// JavaScript Document

 
var message="Het copyright op de teksten en het fotomateriaal in deze website berust bij: SMS Bordello "; // Your no right click message here
var closeWin="0"; // Do you want to close window after message (1 for yes 0 for no)
 
// JavaScript SOCA by Micha-Design.nl

 
function IE(e) 
{
if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3))
{
alert(message); if(closeWin=="1") self.close();
return false;
}
}
function NS(e) 
{
if (document.layers || (document.getElementById && !document.all))
{
if (e.which==2 || e.which==3)
{
alert(message); if(closeWin=="1") self.close();
return false;
}
}
}
document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
 
// LIGHTBOX
function lightbox() {
strHTML = '<DIV CLASS="lightbox" ID="lightbox"><DIV CLASS="lightbox_gray_overlay" ONCLICK="close_lightbox();"></DIV>';
strHTML+= '<TABLE CLASS="lightbox_table" CELLSPACING=0 CELLPADDING=0><TR><TD WIDTH="50%"></TD><TD><DIV CLASS="lightbox_content">';
strHTML+= '<IMG SRC="images/close_lightbox.gif" BORDER=0 WIDTH=13 HEIGHT=13 ONCLICK="close_lightbox(); return false;"><H1 ID="lightbox_info"></H1>';
strHTML+= '<SPAN ID="insert_content"></SPAN></DIV></TD><TD WIDTH="50%"></TD></TR></TABLE></DIV>';

box = document.createElement('div');
box.innerHTML = strHTML;
document.getElementsByTagName('body')[0].appendChild(box); }

function open_lightbox() { lightbox();
document.getElementById('insert_content').innerHTML = '';
document.getElementById('lightbox').style.visibility = 'visible'; }

function close_lightbox() {
document.getElementById('insert_content').innerHTML = '';
document.getElementById('lightbox').style.visibility = 'hidden'; }

function close_lightbox_iframe() {
top.document.getElementById('lightbox').style.visibility = 'hidden';
top.document.getElementById('insert_content').innerHTML = ''; }

function link_lightbox(url) {
top.document.getElementById('lightbox').style.visibility = 'hidden';
top.location.href = url;
top.document.getElementById('insert_content').innerHTML = ''; }

function lightbox_iframe(src, width, height, info) { open_lightbox();
document.getElementById('lightbox_info').innerHTML = info;
document.getElementById('insert_content').innerHTML = '<IFRAME SRC="http://'+src+'" WIDTH='+width+' HEIGHT='+height+' MARGINHEIGHT=0 MARGINWIDTH=0 FRAMEBORDER=0 SCROLLING="AUTO" ID="i_lightbox" NAME="i_lightbox"></IFRAME>'; }




// COPYRIGHT WARNING
function show_copy(e, sort) {

var selection = '';
if (window.getSelection) { selection = ''+window.getSelection(); }
else if (document.selection) { selection = ''+document.selection.createRange().text; }

if((e.ctrlKey && e.keyCode == 65) || (selection.length > 300 && ((e.ctrlKey && e.keyCode == 67) || sort == 'menu')) || selection.length > 50){
if (window.getSelection) { window.getSelection().removeAllRanges(); }
else if (document.selection) { document.selection.empty(); }
lightbox_iframe('www.smsbordello.com/CopyRight.html', 664, 500, 'Let op copyright!'); } }


