/*
 *by CHOW Tak Ho
 *Email: chowtakho [at] gmail.com
 */

/***************************/
/********FOOTER NOTE********/
/***************************/
function writecopyright(){
	document.write("Best viewed with 1024x768 resolution and Macromedia Flash Player.&nbsp;&nbsp;Copyright &copy; 2008. All rights reserved.");
}

/*********************************************************/
/*****MAINTAIN WHITE AREA LONGER THAN WIN INNERHEIGHT*****/
/*********************************************************/
contenthowmuchlonger = 1.1;	// how much times of the window innerheight

function contentheightadj(){
	wininnerHeight=(isNaN(window.innerHeight)==true)?document.documentElement.clientHeight:window.innerHeight;
	document.getElementById("content").height=wininnerHeight*contenthowmuchlonger;
}

/***************************/
/******AVOID FRAMESET*******/
/***************************/
function avoidframeset(){
	if(top.location!=self.location){top.location=self.location;}
}
