
function openWindow(url, name)
{  
    popupWin = window.open(url, name, "width=492,height=414,status=no,toolbar=no,menubar=no");
}

function sendevent(event,action,validate)
{	
	var ret = true;

	if(typeof(validate) != 'undefined')
	{
		if (validate != '')
			eval(" ret=" + validate + "()");
	}
	if (ret == true)
	{
		document.forms[0].event.value = event;
		document.forms[0].action = action;
		document.forms[0].method = 'post';
		document.forms[0].submit();
		return(true);
	}
	return(false);
}

function confirmAction(event,action,msg)
{	
	if (confirm(msg))
	{	
		document.forms[0].event.value = event;
		document.forms[0].action = action;
		document.forms[0].method = 'post';
		document.forms[0].submit();
		return(true);
	}
	return(true);	
}


function openWindow(url, name)
{  
    popupWin = window.open(url, name, "width=492,height=414,status=no,toolbar=no,menubar=no");
}

function PopUpWindow(url)
{
	var win = window.open(""+url,"", "resizable=yes,scrollbars=yes,height=300,width=400");
}


function picselect(event,action,pic_name)
{	

	document.forms[0].event.value = event;
	document.forms[0].pic_name.value = pic_name;
	document.forms[0].action = action;
	document.forms[0].method = 'post';
	document.forms[0].submit();
	return(true);

}