function ZoomPop(url){
	window.open(url,'Image','left=100,top=100,width=100,height=100,resizable=yes');
}

function SendPop(url){
	window.open(url,'SendPop','left='+(screen.availWidth/2-200)+',top='+(screen.availHeight/2-100)+',width=400,height=200,resizable=yes');
}

if (window != top) top.location.href = location.href;

function externalLinks(){
     for (var i=0; (a=document.getElementsByTagName('a')[i]);i++) {
          if (a.getAttribute("rel") == "external")
               a.target = "_blank";
     }
}

function init(){
	if(arguments.callee.done)return;
	arguments.callee.done=true;
	externalLinks();
};

if(document.addEventListener){document.addEventListener("DOMContentLoaded", init, null);}
/*@cc_on @*/
/*@if (@_win32)
  document.write('<script defer="defer" src="inc_jsieo.js"><'+'/script>');
/*@end @*/
window.onload=init;
