//created for DMI pages
function popupLink(url,w,h) {
	if (!w) {var wh=450} else {var wh=w};
	if (!h) {var ht=300} else {var ht=h};
	newWin=open(url, 'wagLinkWindow', 'width='+wh+',height='+ht+',scrollbars=yes,resizable=yes');
	newWin.moveTo(200,200);
	return;
}
function mainWinLink(url) {
	if (url) {
		window.opener.location.href=url;
		closeRemote();
	} else {
		alert('No link provided');
	}
}
function closeRemote() {
	timer = setTimeout('window.close();', 10);
}

