function processFormAction(useSecureConnection, formId, urlpathname, host, uri) {
	if(useSecureConnection) {
        posturl = "https://"+host+urlpathname;
    } else {
        posturl = "http://"+host+urlpathname;
    }
	var formObject = jQuery("#"+formId)[0] ;
	if(formObject) {
		formObject.action =  posturl+uri;
	}
}

/* <!-- CROSS --> */
function setLocation(url){
    jQuery(location).attr('href', url);
}
/* <!-- @CROSS --> */
