function myopen(url) { 
    GenWin=window.open(url,'windowName','scrollbars=yes,width=600,height=450'); 
    GenWin.focus();
} 
 
function mailopen(url) { 
    MailWin=window.open(url,'MailWindow','scrollbars=yes,width=400,height=400');             MailWin.focus();
} 

function portfolioopen(url) { 
    CV=window.open(url,'windowName','scrollbars=yes,width=320,height=580'); 
    CV.focus();
} 


// made by: Nicolas - http://www.javascript-page.com
var mymessage = "If you want a website like this, contact me - I'll be happy to help.";
function rtclickcheck(keyp){
  if (navigator.appName == "Netscape" && keyp.which == 3) {
    alert(mymessage);
    return false;
  }
  if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) {
    alert(mymessage);
    return false;
  }
}
document.onmousedown = rtclickcheck



//  http://www.codelifter.com/main/javascript/printwindow1.html
// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}


<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  Roberto Ortali (ortiz83@libero.it) -->

<!-- Begin
var refer=true;
function combo() {
if (refer) {
  document.all.contents.style.visibility="visible";
  refer=false;
}
else {
  document.all.contents.style.visibility="hidden";
  refer=true;
}
}
//  End -->
