function myPopup() {
window.open( "/Main/docs/cities.html", "myWindow1", 
"status = 1, height = 130, width = 430, resizable = 0" )
}
function myPopup2() {
window.open( "/Main/docs/countries.html", "myWindow2", 
"status = 1, height = 180, width = 610, resizable = 0" )
}
function myPopup3(locale) {
var pageLink= "/Main/docs/login_alarm_" + locale + ".html";	
window.open( pageLink, "myWindow3", 
"status = 1, height = 10, width = 330, resizable = 0" )
}
function promotionPopup() {
var mypage= "/Main/Chn/Promotion/mom.html";	
var myname = "Promotion" ;
var w= 640;
var h= 640;
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable'
win = window.open(mypage, myname, winprops)
}

function promotionResultPopup() {
var mypage= "/Main/docs/promotion_result.html";	
var myname = "Promotion" ;
var w= 800;
var h= 640;
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable'
win = window.open(mypage, myname, winprops)

}