/*************************************************
popup
*************************************************/
var w;

function popup(thisurl,type){
	if(type=="$$$") w=window.open(thisurl,'popupwindow','menubar=no,scrollbars=yes,resizable=yes,width=500,height=650');
	w.focus();
}

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

