
var newwindow;
var oPopup = window.createPopup();
function help(url)
{
	newwindow=window.open(url,'name','height=300,width=300');
	if (window.focus) {newwindow.focus()}
}

function form(url)
{
	newwindow=window.open(url,'name','height=500,width=600');
	if (window.focus) {newwindow.focus()}
}

function popup(url)
{
    var oPopBody = oPopup.document.body;
    oPopBody.style.backgroundColor = "lightyellow";
    oPopBody.style.border = "solid black 1px";
    oPopBody.innerHTML = "Click outside <B>popup</B> to close.";
    oPopup.show(100, 100, 180, 25, document.body);
}

function HandleOnClose() {
if(event.clientY < 0){
opener.location.reload(); 

window.focus('','_self','');

window.close();
}
	}

