function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}


function clickIE() {
	return false;
}

function clickNS(e) {
	return false;
}

if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=clickNS;
} else {
	document.onmouseup=clickNS;
	document.oncontextmenu=clickIE;
}

function OpenSmsPictureEditor(urlis){
 var width = 681;
 var height = 675;
 var ranL= Math.round(Math.random()*100); 
 var ranT= Math.round(Math.random()*100);
 var l = ( screen.width - width )/2;
 var t = ( screen.height - height )/2 - 20;
 url = urlis;
 window.open( url, "_blank", "directories=0,location=0,menubar=no,titlebar=no,toolbar=0,scrollbars=0,resizable=0,left="+l+",top="+t+",width="+width+",height="+height );
}
