function openPopup(a,b,c,d,e,f){var l,t;if((c==0&&d==0)||(c==''&&d=='')){c=screen.Width;d=screen.Height;}if((e==0&&f==0)||(e==''&&f=='')){l=parseInt((screen.width-c)/2);t=parseInt((screen.height-d)/2)}else{l=e;t=f;}var g='status,resizable=no,menubar=no,location=no,scrollbars=no,dependent,width='+c+',height='+d+',left='+l+',top='+t;window.open(a,b,g)}

function newPopup(url) {
	popupWindow = window.open(
		url,'popUpWindow','height=700,width=800,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
}