function OpenWindow(url, name, width, height)
{
twidth=eval('50+'+width);
theight=eval('100+'+height);
if(twidth < 300) twidth=300;
if(theight < 400) theight=400;
attr = "height="+theight+",width="+twidth+",status=no,toolbar=no,titlebar=no,menubar=no,location=no,resizable=yes,scrollbars=yes,fullscreen=no";
window.open (url, name, attr);
return false;
}

//function OpenWindowIMG(url, name)
//{
//window.open (url, name, "height=600,width=550,status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes");
//}

function ReloadParent()
{
self.opener.location.href=self.opener.location.href;
}

function ReloadParentURL(url)
{
self.opener.location.href=url;
}

function CloseByInterval(interval)
{
window.setTimeout("self.close()", interval);
}