$(function(){
	init();
	
	var pathflag = init();
	
	if(pathflag == false){
		tb_show("","pr20100814/index.html?KeepThis=true&amp;TB_iframe=true&amp;height=670&amp;width=755","");
		setTimeout("tb_remove()",10000);
	}
	
	
});

function init(){
	var host = location.hostname;
	var ref = document.referrer;
	var reg = new RegExp(host,"ig");
	var obj = ref.match(reg);
	var pathname = RegExp.rightContext;
	
	if(ref){
		if(ref.indexOf(host) != -1){
		
			if(pathname != '/index.php' || pathname != '/'){
				return true;
			}
			else{
				return false;
			}
		}
	}
	else{
		return false;
	}
}

