/* ******************** */	
function PopUpWindow(url)
{
var win = window.open(""+url,"", "resizable=yes,scrollbars=yes,height=525,width=525");
}

/* ******************** */	
//function RedirectPage(sLocation) {
	//document.location.replace(sLocation);
//}

/* ******************** */	
function sendevent(event,action,validate, formname)
{	
	var ret = true;

	if(typeof(validate) != 'undefined')
	{
		if (validate != '')
			eval(" ret=" + validate + "()");
	}
	if (ret == true)
	{
		document.forms[formname].event.value = event;
		document.forms[formname].action = action;
		document.forms[formname].method = 'post';
		document.forms[formname].submit();
		return(true);
	}
	return(false);
}

/*---------------------------------------------*/
function submitfrm(SearchField, SearchVal)	
{
	//alert("document.forms[0]." + SearchField + ".value = '" + SearchVal + "'");
	eval("document.forms[0]." + SearchField + ".value = '" + SearchVal + "'");
	
	document.forms[0].submit();
	return(true);
}
/*---------------------------------------------*/