function PopUp(page, height, width)
{
	popup = window.open(page, "popup", "height=" + height + ",width=" + width + ",scrollbars=yes,left=1,top=1");
	return false;
}

function linkclose(url)
{
	if (parent.opener && parent.opener.parent)
	{
	    parent.opener.parent.location.href=url;
	    self.close();
	}
	else
	{
	    this.location.href=url;
	  	return;
	}
}

window.focus();