function redirectTo(sPage){
	window.location=sPage;
}

function openPopup(URL, width, height){
	window.open(URL,"my_window","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height)
}

function preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.p) d.p=new Array();
    var i,j=d.p.length,a=preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.p[j]=new Image; d.p[j++].src=a[i];}}
}

function showDate() {
	var d = new Date()
	var s;
	s=""
	s+=(d.getDate())
	s+=("-")
	s+=(d.getMonth() + 1)
	s+=("-")
	s+=(d.getFullYear())
	document.write (s)
}