<!--

//
//	FACING THE MIRROR WITH CANCER
//




function choosePic() {
	homepagePix = new Array("images/homepage_1.jpg", "images/homepage_2.jpg", "images/homepage_3.jpg")
	imgCt = homepagePix.length

	if (document.images){
		randomNum = Math.floor((Math.random() * imgCt))
		document.hpPic.src = homepagePix[randomNum]
	}
}


function openNewWindow(URLtoOpen, windowName)  {
	newWindow=window.open(URLtoOpen,windowName,"height=400, width=400, location=no, menubar=no, resizable=no, scrollbars=no, status=no, titlebar=no"); 
}

function openPFWindow(URLtoOpen, windowName)  {
	newWindow=window.open(URLtoOpen,windowName,"height=500, width=600, location=no, menubar=yes, resizable=no, scrollbars=yes, status=no, titlebar=no"); 
}

//-->
