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;
}

function openSenda() {
window.open('http://www.icedan.is/senda/senda.asp?strURL=' + escape(document.URL),'Send','height=400,width=400,resizable=no,location=no,menubar=no,scrollbars=no,status=no,titlebar=yes');
}
            // Indicates whether the user is on
            // the public site or not.
            var onPublic = true;

            function openPopups() {
        
            }
   
        function popup(url,x,y) {
            window.open(url, 'popupWindow', 'directories=no,location=no,menubar=no,resizable=yes,titlebar=yes,toolbar=no,scrollbars=yes,height=' + y + ',width=' + x ).focus();
        }
        
function popUp(URL)
{
window.open(URL,'',"toolbars=0,scrollbars=0,location=0,status=0,menubars=0,resizeable=0,titlebar=yes,left=312,top=184,width=400,height=400");
}
	
