<!--
function JSOpenPopup(url,name,w,h,props,center){

	l=18;t=18

	if(center){l=(screen.availWidth-w)/2;t=(screen.availHeight-h)/2}

	url=url.replace(/[ ]/g,'%20')

	popup=window.open(url,name,'left='+l+',top='+t+',width='+w+',height='+h+',menubar=1,scrollbars=1'+((props)?','+props:''))

	props=props||''

	if(props.indexOf('fullscreen')!=-1){popup.moveTo(0,0);popup.resizeTo(screen.width,screen.height)}

	popup.focus()

}
-->
