

/* Clear Text boxes */

function clearDefault(el) {

  if (el.defaultValue==el.value) el.value = ""

}



/*hotkey code*/

var hotkey=06

var destination="http://www.enuffsaid.com/admin/"

if (document.layers)

document.captureEvents(Event.KEYPRESS)

function backhome(e){

if (document.layers){

if (e.which==hotkey)

window.location=destination

}

else if (document.all){

if (event.keyCode==hotkey)

window.location=destination

}

}

document.onkeypress=backhome



function createWindowCommon(destination,width,height,winname) {

    var features='width=width,height=height,status=no,resizeable=no,directories=no,left=0,screenX=0,location=no,menubar=no,screenY=0,scrollbars=no,toolbar=no,top=0';

    window.open (destination, winname, features);

}

function createWindow(destination) {

  var features='width=350,height=400,status=no,resizeable=no,directories=no,left=0,screenX=0,location=no,menubar=no,screenY=0,scrollbars=no,toolbar=no,top=0';

  window.open (destination, "message", features);

}
function createWindowPlayer(destination) {
  var features='channelmode=no,directories=no,fullscreen=no,height=235,left=50,location=no,menubar=no,resizeable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,width=200,screenX=0,screenY=0,top=50';
  window.open (destination, "player", features);

}

function MailingList(URL) {

day = new Date();

id = day.getTime();

eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=200,height=100,left = 350,top = 350');");

}

function createProductPicker(destination) {

  var features='fullscreen=no,channelmode=no,width=350,height=400,status=no,resizeable=no,directories=no,left=0,screenX=0,location=no,menubar=no,screenY=0,scrollbars=yes,toolbar=no,top=0';
  window.open (destination, "products", features);
}	 
