// Random Imagages//
var theImages = new Array() 

theImages[0] = 'image01'
theImages[1] = 'image02'
theImages[2] = 'image03'
theImages[3] = 'image04'

var p = theImages.length;
if (document.documentElement)
{
  document.documentElement.className = theImages[Math.round(Math.random()*(p-1))];
}
// End Random Images //



function popUp(URL) {
window.open(URL, new Date().getTime(), 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=650,height=600');
return false;
}