/* This Function is used to pop open a new window sized to iWidth and iHeight */
function popUp(URL,iWidth,iHeight,windowname)
 {
	window.open(URL,windowname,'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + iWidth + ',height=' + iHeight );
}
function OpenWin(URL,windowname, WindowProperties)
{
	window.open(URL,windowname,WindowProperties);
}