function OpenWindow(cSite, cSiteName, iWidth, iHeight, iLeft, iTop) {
	cVars = "width="+iWidth+", ";
	cVars+= "height="+iHeight+", ";
	cVars+= "left="+iLeft+", ";
	cVars+= "top="+iTop+", ";
	cVars+= "location=no, ";
	cVars+= "menubar=no, ";
	cVars+= "scrollbars=no, ";
	cVars+= "resizable=no ,";
	cVars+= "status=no, ";
	cVars+= "dependent=yes, ";
	cVars+= "toolbar=no ";
	wWindow = window.open(cSite, cSiteName, cVars);
}
