/*	function name:openWin()
		Name: openWin
		Author:Sido
		Date:96/06/14
*/
	function openWin(URL,argw, argh){ 
		window.open(URL,"openNewWin",
    "_blank,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="
    + argw +",height=" + argh);
  }

    