

	theSize = "";
	theName = "FontSize=";
	theCookie = document.cookie+";";
	start = theCookie.indexOf(theName);
	if(start != -1)
	{
		end = theCookie.indexOf(";",start);
		theSize =unescape(theCookie.substring(start+theName.length,end));
	}
	if(!theSize) theSize = "small";
	document.getElementById("container").style.fontSize = theSize;



function ViewFlash()
{
    document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="800" height="300">\n');
    document.write('<PARAM name=movie value="./img/top_img3.swf">\n');
    document.write('<PARAM name=quality value=high>\n');
    document.write('</object>\n');
}




function fontChange(theValue){
	theName = "FontSize";
	theDay = 7;
	setDay = new Date();
	setDay.setTime(setDay.getTime()+(theDay*1000*60*60*24));
	expDay = setDay.toGMTString();
	document.cookie = theName + "="+ escape(theValue)+";expires="+expDay;
	document.getElementById("container").style.fontSize = theValue;
}



function Change_Image(b,f){

document.getElementById('image_box').src = "/lib-img/image/" + f;

}
