function openWin(myURL, w, h) 
	{
	var winprops = 'height=' + h + ',width=' + w;
	window.open(myURL.href, "win"+(new Date()).getSeconds(), winprops + 'resizable=yes, scrollbars=yes, status=yes ');   
	return false;
	}
	
	