﻿// JScript File
function OpenNewWindow(url, w, h)
{
	var leftPos = (screen.availWidth-700) / 4
	var topPos = (screen.availHeight-550) / 4 
	window.open( url ,'_blank','width=' + w + ',height=' + h + ',scrollbars=yes,resizable=yes,titlebar=0,top=' + topPos + ',left=' + leftPos);
	return false;
}

function DeletePopUp(url, message)
{
	if (confirm(message))
	{
		uwnd = window.open( url ,'_self');
		return true;
	}
	else
		return false;
}