function openWin(url,name,width,height){	var url;	var width;	var height;	var name;		var new_win;			width = parseInt(width);		height = parseInt(height);			win_detail = "status=1,toolbar=1,location=0,directories=0,width=" + width + ",height=" + height + ",scrollbars=1, resizable=1";		nw_win= window.open('',name ,win_detail);	nw_win.document.open();	nw_win.location.href=url;	nw_win.window.focus();}
