//Created by Tim Leary function chg_images() { var img_name = new Array("bambooview1.jpg", "bambooview2.jpg", "bambooview3.jpg", "bambooview4.jpg", "bambooview5.jpg", "bambooview6.jpg","bambooview7.jpg","bambooview8.jpg"); var l = img_name.length; var rnd_no = Math.round((l-1)*Math.random()); document.getElementById('image_holder').src = img_name[rnd_no]; } function open_w(ref,url) { //window.open(url); window.location=url; } function jam_() { var tarikh=new Date() var jam=tarikh.getHours() var minit=tarikh.getMinutes() var saat=tarikh.getSeconds() waktu="Pagi"; if(jam>12) { waktu="Petang"; if(jam>19) { waktu="Malam"; } jam=jam-12; } if (jam==0) { jam=12 } if(minit<=9) { minit="0"+minit; } if(saat<=9) { saat="0"+saat; } document.getElementById('paparmasa').innerHTML=" "+jam+":"+minit+":"+saat+" "+waktu+""; setTimeout("jam_()",1000); } function resize_frame(f_height,f_id) { height1=f_height; if(parent.document.getElementById(f_id).height!=height1) { parent.document.getElementById(f_id).height=height1; } } function view_pict(file_n_val,anchor_id) { ctr = document.getElementById("pic_prv_ctr"); anch=document.getElementById(anchor_id) //x_p=get_obj_ctr('pic_prv_ctr','x'); //y_p=get_obj_ctr('pic_prv_ctr','y'); //JSFX_FloatDiv("pic_prv_ctr",x_p,y_p).floatIt(); JSFX_FloatDiv("pic_prv_ctr",10,10).floatIt(); papardata = document.getElementById("pic_ctr"); ctr.style.display=""; stateChangedHandler = function () { //centre_obj('pic_prv_ctr'); //pic_prv_ctr.anchor(anchor_id); papardata.innerHTML = xmlHttp.responseText; //document.getElementById("main_td").focus(); //hideLoading(); //alert(file_n_val); } //papardata.innerHTML=""; //showLoading(); //file_n_val+=createUrlData("id_user"); //file_n_val+=createUrlData("id_user2"); //alert(file_n_val); sendData(file_n_val); } function hide_div(div_id,div_id2) { document.getElementById(div_id2).innerHTML=""; document.getElementById(div_id).style.display="none"; } function menu_image(the_id,act) { switch(act) { case"over": document.getElementById(the_id).background="../images/menubar_darker.gif"; break; case"out": //alert(the_bg); document.getElementById(the_id).background=the_bg; break; } } function togle_news(div_id,img_id) { the_img=document.getElementById(img_id); the_div=document.getElementById(div_id); if(the_div.style.display=="none") { the_div.style.display=""; the_img.src="/images/open_dir.gif"; } else { the_div.style.display="none"; the_img.src="/images/closed_dir.gif"; } }