//Function to open new windows
function openWin(URL, Width, Height)
{
	nHeight = Height + 210;
	nWidth = Width + 150;
					aWindow=window.open(URL,"PopUp","width="+nWidth+",height="+nHeight+",resizable=yes,scrollbars=yes,left=10,top=10");
	aWindow.resizeTo(nWidth, nHeight);

	if(aWindow.opener == null)
	{
		aWindow.opener = window;
		aWindow.opener.name = "opener";
	}
	aWindow.focus();
}