// JavaScript Document
function openCenteredWindow(curwindow) {
	if (curwindow==1){
		url="inaugurationGallery.html"
	}else if (curwindow==2){
		url="LCDSchemeGallery.html"
	}else if (curwindow==3){
		url="KidsZoneGallery.html"
	}else if (curwindow==4){
		url="winnerGallery.html"
	}else if (curwindow==5){
		url="stallsGallery.html"
	}else if (curwindow==6){
		url="vipGallery.html"
	}else if (curwindow==7){
		url="vips.html"
	}else if (curwindow==8){
		url="visitors.html"
	}else if (curwindow==9){
		url="secretariatBig.html"
	}else if (curwindow==10){
		url="conferenceHall1.html"
	}else if (curwindow==11){
		url="conferenceHall2.html"
	}else if (curwindow==12){
		url="conferenceHall3.html"
	}else if (curwindow==13){
		url="conferenceHall4.html"
	}else if (curwindow==14){
		url="conferenceHall5.html"
	}else if (curwindow==15){
		url="conferenceHallLocation.html"
	}else if (curwindow==16){
		url="mchi_unit.html"
	}
	
    var width = 1024;  //window width
	var height = 768; //window hight
	
	var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
	
	window.open(url,'_blank','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height+',left='+left+',top='+top);
}

// JavaScript Document
function openCenteredMap(curwindow) {
	
    var width = 800;  //window width
	var height = 600; //window hight
	
	var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
	
	window.open("map.html",'_blank','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height+',left='+left+',top='+top);
}



// JavaScript Document
function openCenteredeomesticlogo() {
	
    var width = 500;  //window width
	var height = 600; //window hight
	
	var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
	
	window.open("domesticlogo.html",'_blank','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height+',left='+left+',top='+top);
}


// JavaScript Document
function openCenteremeetingthumb() {
	
    var width = 550;  //window width
	var height = 682; //window hight
	
	var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
	
	window.open("interactive_meeting.html",'_blank','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height+',left='+left+',top='+top);
}


function hideDiv(){
	ddBox = document.getElementById('mainFlashBanner');
	ddBox.style.visibility="hidden";
}


