function openWindow(url,w,h,t,l) 
{
	
var windowprops = "scrollbars=yes,menubars=no,toolbars=no,resizable=yes" +
",width=" + w +",height=" + h + ",top=" + t + ",left=" + l;

popupWin = window.open(url,'examples',windowprops);


	if(window.focus)
	{
		popupWin.focus('examples');
	}
}                                