

function NewWindow() 
{
if (document.grpSites.GroupSites.value != "" )
{
	win=window.open( document.grpSites.GroupSites.value);
}   
}

function NewWindow2(site) 
{
//alert("hi")
var win=window.open(site);
}


function openProdPop(file,prodID)
{
if (window.screen) 
{
var Iwidth = 600;
var Iheight = 500;
var topH=(window.screen.height/2)  - 222
var topW=(window.screen.width/2)  -330
}
	var popfile=file + '?pid='+ prodID
	//alert(popfile);
	var newWin1=window.open(popfile,'nWin'+prodID,'x=0,y=0,titlebar=Yes,toolbar=no,maximize=yes,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width='+Iwidth+',height='+Iheight+',screenX=0,screenY=0,left='+ topW +',top='+ topH  +',fullscreen=no');
}

function openWin(file)
{
	if (window.screen) 
	{
	var Iwidth = 500;
	var Iheight = 500;
	var topH=(window.screen.height/2)  - 110
	var topW=(window.screen.width/2)  -330
	}
//alert(document.location)
	var popfile=file
	var newWin1=window.open(file+'?loca='+document.location,'Nwin','x=0,y=0,titlebar=Yes,toolbar=no,maximize=yes,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width='+Iwidth+',height='+Iheight+',screenX=0,screenY=0,left='+ topH +',top='+ topW  +',fullscreen=no');
}


function openWin_bulk(file)
{
	if (window.screen) 
{
var Iwidth = 550;
var Iheight = 550;
var topH=(window.screen.height/2)-300
var topW=(window.screen.width/2)-300
}
	var popfile=file
	var newWin1=window.open(popfile,'nWin','x=0,y=0,titlebar=Yes,toolbar=no,maximize=yes,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width='+Iwidth+',height='+Iheight+',screenX=0,screenY=0,left='+ topW +',top='+ topH  +',fullscreen=no');
}


function openProdPop2(file,prodID)
{
if (window.screen) 
{
var Iwidth = window.screen.width-20;
var Iheight = window.screen.height-100;
//var topH=(window.screen.height/2)  - 110
//var topW=(window.screen.width/2)  -330
}
	window.close();
	var popfile=file + '?pid='+ prodID
	//alert(popfile);
	var newWin1=window.open(popfile,'nWinnew'+prodID,'x=0,y=0,titlebar=Yes,toolbar=no,maximize=yes,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+Iwidth+',height='+Iheight+',screenX=0,screenY=0,left=5,top=5,fullscreen=no');
}