function openwindow(name,w,h)
{	
	l=(screen.width)/2-(w/2);
	t=(screen.height)/2-(h/2);
	Window2 = window.open(name,"Window2","width="+w+",height="+h+",left="+l+",top="+t);	
	Window2.focus();
}
