<!--
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=540,width=600');
	if (window.focus) {newwindow.focus()}
}
function popmw(sURL,sHeight,sWidth)
  {
var sFeatures = "top=50,left=50,height="+ (sHeight) +",width="+ (sWidth) + ",toolbar=yes,location=yes,menubar=yes,status=yes,scrollbars=yes,resizable=yes";
var oSampWin = window.open(sURL,"_blank",sFeatures)
  }
function popsw(sURL,sHeight,sWidth)
  {
var sFeatures = "top=20,left=0,height="+ (sHeight) +",width="+ (sWidth) + ",status=no,scrollbars=no,resizable=1";
var oSampWin = window.open(sURL,"_blank",sFeatures)
  }
//-->

