function popLink(Link,width,Height,showScroll,isFullScreen)
{
	var strFeatures = "height="+Height+",width="+width+",status=no,titlebar=no";
	
	if(isFullScreen)
		strFeatures+=",fullscreen=yes";
	if(showScroll)
		strFeatures+=",scrollbars=yes";
		
	var popup=window.open(Link, "_blank",strFeatures);
	popup.focus();
}

function openWindow(Link)
{
	window.open(Link, "_blank");
}