if (window != window.top){ 
top.location.href = location.href;
     }

//begin pop ups

function booksvideos() {
newwin=window.open('booksvideos.html','amwin','width=560,height=600,resizable=1,scrollbars');
 }


function magicorders() {
newwin=window.open('magicorders.html','amwin','width=560,height=600,resizable=1,scrollbars');
 }

function newmagicians() {
newwin=window.open('newmagicians.html','amwin','width=560,height=600,resizable=1,scrollbars');
 }

function classics() {
newwin=window.open('classics.html','amwin','width=560,height=600,resizable=1,scrollbars');
 }


//end pop ups

// date routine

var datetoday = "";
var sMonth = "";
var dt = new Date();
var dy = dt.getDate();
var mn = dt.getMonth();
var yr  = dt.getYear();
if (yr < 2000)    // Y2K Fix, Isaac Powell
yr = yr + 1900; // http://onyx.idbsu.edu/~ipowell
 
// parse
        if(mn==0) {sMonth="January";}
        if(mn==1) {sMonth="February";}
        if(mn==2) {sMonth="March";}
        if(mn==3) {sMonth="April";}
        if(mn==4) {sMonth="May";}
        if(mn==5) {sMonth="June";}
        if(mn==6) {sMonth="July";}
        if(mn==7) {sMonth="August";}
        if(mn==8) {sMonth="September";}
        if(mn==9) {sMonth="October";}
        if(mn==10) {sMonth="November";}
        if(mn==11) {sMonth="December";}
        
datetoday = dy + " " + sMonth + " " + yr;
  
