function popWin(url,h,w,sc,rs,left,top)
{
	var s = null;
	var win = null;

	s = "'width=" + w + ",height=" + h + ",screenX=" + left + ",screenY=" + top + ",left=" + left + ",top=" + top + ",scrollbars=" + sc + ",resizable=" + rs + "'"; 
	
	win = window.open(url,'win',eval(s));
	win.focus();
}
