
function popup(url, name, width, height)
{
	settings="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+width+",height="+height;
	PopWindow=window.open(url,name,settings);
	PopWindow.opener.name = "orgWindow";
}

function popupWHSCL(url, name, width, height)
{
	settings=
	"toolbar=no,location=no,directories=no,"+
	"status=no,menubar=no,scrollbars=yes,"+
	"resizable=no,width="+width+",height="+height;
	PopWindow=window.open(url,name,settings);
	PopWindow.opener.name = "orgWindow";
}

function MatchFields(MatchDescription, FirstStr, SecondStr)
{

if (FirstStr==SecondStr)
return true;
else
alert(MatchDescription+" does not match! Please re-enter..."); 
return false;
}

function popupDetail(url, name, width, height, scrollbars, toolbar, status, menubar, resizable, location, directories)
{
	settings=
	"toolbar="+toolbar+",location="+location+",directories="+directories+","+
	"status="+status+",menubar="+menubar+",scrollbars="+scrollbars+","+
	"resizable="+resizable+",width="+width+",height="+height;
	PopWindow=window.open(url,name,settings);
	PopWindow.opener.name = "orgWindow";
}

function msgConfirm(msg) 
{ 
alert(msg); 
}

