
function openWindow(url,winName,features) {
window.open(url,'','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=0,width=640,height=540,left = 25,top = 25');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,'','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=0,width=640,height=540,left = 25,top = 25');
}

function openCustom(URL,name,w,h){ 
	
		myW = 'width=' + w + ',';
		myH = 'height=' + h + ',';
		
		params = 'toolbars=1, scrollbars=0, location=0, statusbars=0, menubars=1, resizable=0';
			

		window.open(URL,name,myW + myH + params); 
}

function openPopup(url,winName,features) {
	if (features.length > 0)
	{
		window.open(url,'',features);
	}
	else
	{
	window.open(theURL,'','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=0,width=640,height=540,left = 25,top = 25');
	}
}