function openImgWin(url)
{
	w = 600;
	h = 500;
	window.open(url, 'IMGWIN', 'alwaysRaised=yes,dependent=yes,menubar=no,resizable=yes,titlebar=yes,scrollbars=yes,toolbar=no,directories=no,height='+h+',width='+w+',top=0,left=0');
}

function openWin(url)
{
	w = 800;
	h = 500;
	window.open(url, 'WIN', 'alwaysRaised=yes,dependent=yes,menubar=yes,resizable=yes,location=yes,toolbar=yes,directories=no,titlebar=no,scrollbars=yes,height='+h+',width='+w+',top=0,left=0');
}
