﻿// JScript File

function popUp( link, name )
{
	if( !window.focus )
		return true;
	var href;
	if( typeof( link ) == 'string' )
	   href = link;
	else
	   href = link.href;
    var page = window.open( href, name, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=400' );
    page.focus();
}

function popUpClose()
{
	window.close();
}

