var strPageName

function relocateMe(strPageName) {
	self.location = strPageName;
}

function relocateMeWithConfirm(strPageName,strQuestion) {
	var x = window.confirm(strQuestion)
	
	if (x) 
		self.location = strPageName;
}

function myOpenWindow() {
    window.open('blank.asp','myWindowName','width=300,height=200');
}

function showpic(strUrl,intWindowWidth,intWindowHeight){
	var strOptions = 'toolbar=0,location=0,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + intWindowWidth + ',height=' + intWindowHeight;
	PicWin = window.open(strUrl,'Myndir',strOptions);
}
	
function closePopup() {
    window.close();
    return true;
}
