// JavaScript Document
	function open_window(link,w,h) //open popup window script
	{
		var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=no,scrollbars=yes";
		newWin = window.open(link,'newWin',win);
		newWin.focus();
	}


