// JavaScript Document

function openref(url,name1,width,height) // function to open window in center of screen
{
	//alert(parent.frames['bottomFrame'].enableSound);
	
	w=width
	h=height
	l = Math.round((screen.Width-w)/2)
	t = Math.round((screen.Height-h)/2)
	win_name1=open(url,name1,'left='+l+',top='+t+',width='+w+',height='+h+', fullscreen=no, status=no,toolbar=no,menubar=no,resizable=yes');
	if (window.focus) {win_name1.focus()}
	
	if(parent.frames['bottomFrame'].enableSound=='true'){
	parent.frames['bottomFrame'].popSound="true";	
	soundHandler("false");	
	}
}