﻿// JScript File
//--- Start: chan.nguyendinh 23/05/2008 ---
function writeFlash(id) {                 
    document.getElementById(id).innerHTML = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' style='width: 220px; height: 200px' id='myflash' align='middle'><param value='transparent' name='wmode' /><param name='movie' value='images/flash/brunei.swf' /><param name='quality' value='high' /><param name='play' value='-1' /><param name='loop' value='-1' /><embed src='images/flash/brunei.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent' width='220' height='200'></embed></object>";    
}

function FlashMenu(id) {                 
    document.getElementById(id).innerHTML = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' style='width: 350px; height: 90px' id='flashmenu' align='middle'><param value='transparent' name='wmode' /><param name='movie' value='images/flash/flashAdv.swf' /><param name='quality' value='high' /><param name='play' value='-1' /><param name='loop' value='-1' /><embed src='images/flash/flashAdv.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent' width='350' height='90'></embed></object>";    
}

function formatTime() {   
    now = new Date();
	hour = now.getHours();
	min = now.getMinutes();			
	sec = now.getSeconds();
	//<!-- Blink text	-->
	if (!document.all) return;
	else {
	    for(i=0;i<document.all.tags('blink').length;i++){
		    s=document.all.tags('blink')[i];		
		    s.style.visibility=(s.style.visibility=='visible')?'hidden':'visible';
        }
	}
	//<!-- Show time	-->
	if (min <= 9) {  min = "0" + min; }
	if (sec <= 9) { sec = "0" + sec; }
	if (hour < 10) { hour = "0" + hour; }
	document.formInCome.clock1.value = hour + ':' + min + ':' + sec;
	if ((parseInt(min)%10==0) && (parseInt(sec)==1)) {document.formInCome.submit();}
	    setTimeout("formatTime()", 500);	
}

function OnKeypressNum() {
    if (event.keyCode < 45 || event.keyCode > 57) event.returnValue = false;
}
		
function KeyDownHandler(button)
{        
    if (event.keyCode == 13)   {
        event.returnValue=false;
        event.cancel = true;        
        document.getElementById(button).click();
    }
}

function KeyDownHandlerSearch()
{            
    if (event.keyCode == 13)   {
        event.returnValue=false;
        event.cancel = true;        
        document.getElementById("btnSearch").click();
    }
}

function KeyDownHandlerMaster()
{            
    if (event.keyCode == 13)   {
        event.returnValue=false;
        event.cancel = true;        
        document.getElementById("ctl00_btnSearch").click();
    }
}

function OnPrint() {
    var posID = document.getElementById("ctl00_ContentPlaceHolder1_lblBooking").value;
    var winWidth=document.all?document.body.clientWidth:window.innerWidth; 
    var winHeight=document.all?document.body.clientHeight:window.innerHeight;
    var xLeft = (winWidth - 800)/2;
    var yTop = (winHeight - 600)/2;
    var sUrl = "print.aspx?OrderCode="+posID; //New Window Name. 
    var sFeatures = "height=600,width=800,left=" + xLeft + ",top=" + yTop + ",status=no,toolbar=no,menubar=no,location=no";
    win = window.open(sUrl,"Print", sFeatures); 
}
function changeProduct() {
    var secid = document.getElementById('timeadv').value;
    var tol = document.getElementById('totaladv').value;
    if (secid != -1) {  //truong hop play
        secid = parseInt(secid) + parseInt(1);
        if (secid == 2) {
            //goi su kien chuyen tin tuc
            selproduct(1, tol);
            secid = 0;
        }
        document.getElementById('timeadv').value=secid;
    }
}

function selproduct(index, numb) {
    var divnumb = document.getElementById('curadv').value;
    divnumb=parseInt(divnumb)+parseInt(index);
    if (divnumb > numb)
        divnumb = 1;
    else if (divnumb == 0)
        divnumb = numb;
            
    document.getElementById('picadv'+divnumb).style.display = "";
	for(i=1; i<=numb; i++) {
        if (i != divnumb) {
	        document.getElementById('picadv'+i).style.display = "none";
        }
    }
    document.getElementById('curadv').value = divnumb;
    document.getElementById('timeadv').value = 0;
}

//--- End: chan.nguyendinh 23/05/2008 --- 
