function openWindow(url,windowName,windowWidth,windowHeight,Prop)
{
	newWindow=window.open(url,windowName,"WIDTH="+windowWidth+",HEIGHT="+windowHeight+" "+Prop);
	newWindow.focus();
}
