<!-- Begin

function win(url,w,h) {
	msg=window.open(url,"","height="+h+",width="+w+",left=80,top=80,scrollbars=1,resizeable=1");
	//msg=window.open("location="+ op_loc_box +",toolbar="+ op_tool +",directories=" 
	//	+ op_dir +",status="+ op_stat +",menubar="+ op_menu +",scrollbars="  
	//	+ op_scroll +",resizable="  + op_resize +",width=" + op_wid +",height="+ op_heigh;
	//op_loc_box, op_tool, op_dir, op_stat, op_menu, op_scroll, op_resize, op_wid, op_heigh
}

function checkNull	(inputname, columnlabel)	{
	var temp = eval("document." + inputname + ".value");
	if(temp.length < 1)	{
		alert("Please enter a value into the '" + columnlabel + "' field.");
		return false;
	}
	return true;
}
 
function checkInt	(inputname, columnlabel)	{
	if( (isNaN(eval("document.conform." + inputname + ".value")))){
		alert("Please enter a whole number into the '" + columnlabel + "' field.");
		return false;
	}
	return true;
}

function closeWin()	{
	window.close();
	opener.location.reload();
}

function tricky_win_close() {
    window.opener = 1;
    window.close();
}

//-->