function form_submit(form_name, action_url, form_method){

	if(action_url != null && action_url != ""){
		document.forms[form_name].action = action_url;		
	}

	if(form_method != null && form_method != ""){
		document.forms[form_name].method = form_method;		
	}
	
	// send the form
	document.forms[form_name].submit();

}

function showPic(url,name,width,height,status,center,resizable,scrollbars)
{	resize = '';
	if (resizable) { resize = 'resizable'; }
	if (!scrollbars) { scrollbars = 0; }
	//status = 'yes';
	width = 640;
	height = 600;
	openPicWin = window.open(url,name,"top=0,left=0,width="+width+",height="+height+",status="+status+",toolbar=0,menuebar=0,scrollbars="+scrollbars+","+resize+"");
	openPicWin.focus();
}
