function setTop()
	{
		if (top.location != self.location)
		{
		top.location = self.location;
		}
	}
	
	function PopupNoScroll(strUrl, intHeight, intWidth)
	{
		var win= null;
		var winl = (screen.width-intHeight)/2;
		var wint = (screen.height-intWidth)/2;
		var settings  ='height=' + intHeight + ',';
			settings +='width=' + intWidth + ',';
			settings +='top='+wint+',';
			settings +='left='+winl+',';
			settings +='scrollbars=no,';
			settings +='resizable=no,status=no';
		win=window.open(strUrl,'InfoPopup',settings);
		if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
		
	}
	
	

function setTop()
	{
		if (top.location != self.location)
		{
		top.location = self.location;
		}
	}
	
	function PopupScroll(strUrl, intHeight, intWidth)
	{
		var win= null;
		var winl = (screen.width-intHeight)/2;
		var wint = (screen.height-intWidth)/2;
		var settings  ='height=' + intHeight + ',';
			settings +='width=' + intWidth + ',';
			settings +='top='+wint+',';
			settings +='left='+winl+',';
			settings +='scrollbars=yes,';
			settings +='resizable=no,status=no';
		win=window.open(strUrl,'InfoPopup',settings);
		if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
		
	}
