var w;
var wset01="menubar=no,toolbar=no,location=yes,directories=no,status=no,scrollbars=yes,resizable=yes,width=490,height=550";
var wset02="menubar=no,toolbar=no,location=yes,directories=no,status=no,scrollbars=yes,resizable=yes,width=490,height=380";
function popup(thisurl,type){
	if(type=="foot1"){
		w=window.open(thisurl,'popupwindow',wset01);
	}else if(type=="foot1"){
		w=window.open(thisurl,'popupwindow',wset01);
	}else if(type=="foot2"){
		w=window.open(thisurl,'popupwindow',wset02);
	}
	w.focus();
}

function gomain(thisurl){
if(opener){
    opener.location.href=thisurl;
				window.blur();
}else{
    location.href = thisurl;
}    
}



