﻿/*************************************************
popup
*************************************************/
var $$POPUP;

function popup(thisurl,type){
	if(type=="flvp") $$POPUP=window.open(thisurl,'popupwindow','menubar=no,scrollbars=yes,resizable=yes,width=840,height=555');
	$$POPUP.focus();
}

function gomain(thisurl){
if(opener){
    opener.location.href=thisurl;
				window.blur();
}else{
    location.href = thisurl;
}    
}
