

function fnPop(url,winName,theWidth,theHeight,theTop,theLeft,scrollbars,resizable){
	var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",toolbar=0,location=0,directories=0,resizable="+resizable+",status=0,menubar=0,scrollbars="+scrollbars;
	theWin=window.open(url,winName,features);
}  

function fnCertDetails(){	
	var url = 'https://www.thawte.com/cgi/server/certdetails.exe?referer=http://www.Anosos.com'
	
	thewindow = window.open(url,"certWin", config="height=512,width=500,toolbar=no,menubar=no,scrollbars=no,resizable=yes,location=no,directories=no,status=no");
}

function fnOpenPopupScrolling(url,theWidth,theHeight){
	var theTop;
	var theLeft;
	
    if (document.all){
		theTop=(screen.height/2)-(theHeight/2);
		theLeft=(screen.width/2)-(theWidth/2)+175;
	}else{
		theTop=100;
		theLeft=5
		00;
	}
	
	theTop=20;
	theLeft=0;
	
	var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",toolbar=0,location=0,directories=0,resizable=1,status=0,menubar=0,scrollbars=yes";
	
	theWin=window.open(url,'',features);
}

function fnOpenPopup(url,theWidth,theHeight){
	var theTop;
	var theLeft;
	
    if (document.all){
		theTop=(screen.height/2)-(theHeight/2);
		theLeft=(screen.width/2)-(theWidth/2)+175;
	}else{
		theTop=100;
		theLeft=5
		00;
	}
	
	var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",toolbar=0,location=0,directories=0,resizable=1,status=0,menubar=0,scrollbars=no";
	theWin=window.open(url,'',features);
}