	
	function openWindow( str, w, h ) 
	{
		//startday = new Date();
		//window_name = startday.getTime();
		//window_name.toString();
		var props = '';
		if ( arguments[3] )
			props = 'scrollbars=yes,';
		imgWin = window.open( str, 'pic' ,props+'toolbar=no,menubar=no,width='+w+',height='+h );
		imgWin.resizeTo( w, h );
		imgWin.focus();
	}
