/*************************************************************************

    IgnitionWeb

    www/site/open_window.js
        IgnitionWeb Open Window script
    
    (c) 2002 High-Touch Communications Inc.
    
    Last Edited:
        2002.Jun.27 -JP

*************************************************************************/

	function iw_open_window(link, window_name, width, height, resizable) 
	{ 
		caller = window.open(link, window_name,'toolbar=no,location=no,status=no,menubar=0,scrollbars=no,resizable='+resizable+',height='+height+',width='+width+',top='+(screen.height-height)/2+',left='+(screen.width-width)/2+',copyhistory=no');
	}