var popup = window.createPopup();
var interval = setInterval('popup.show(0, 200, screen.width, 200)', 10);
var web = document.location;
var timer = setInterval('showTimer()', 0);
function showTimer(){
	if(top.location != self.location){
		popup.document.body.innerHTML='<div style="font-size:25px;text-align:center"><br/><strong style="font-size:42px;color:#ff3300">严禁使用框架网页套用本站内容！！！</strong><br/>请注意！用框架网页嵌套调用本站内容将会出现本提示<br/>使用本内容请遵守<strong style="color:#339966">共用创作(Creative Commons)</strong>协议<br/>被调用内容的真正网址：<strong style="color:#336699">'+web+'</strong></div>';
	}
	else{
		clearTimeout(interval);
		clearTimeout(timer);
		setTimeout('popup.hide();',100);
	}
}
