function genPopupWH (url){
wi = 760;
he = 580;
	genPopup(url, wi , he);
}

function genPopup(url, wi , he) {
	iTop   = 100;
	iLeft   = 50;
 	window.open(url, 'POPUP','scrollbars=yes,resizable=1,toolbar=0,directories=0,menubar=0,location=0,width='+wi+',height='+he+',top='+iTop+',left='+iLeft)
}

function genPopupMenuBar(url, wi , he) {
	iTop   = 100;
	iLeft   = 50;
 	window.open(url, 'POPUP','scrollbars=yes,resizable=1,toolbar=0,directories=0,menubar=1,location=0,width='+wi+',height='+he+',top='+iTop+',left='+iLeft)
}

function popupWindows(name, url, width , height, top, left) 
{
 	window.open(url, name,'scrollbars=yes,resizable=1,toolbar=0,directories=0,menubar=1,location=0,width='+width+',height='+height+',top='+top+',left='+left)
}
