////////////////////////////////////////////
function comingSoon() {
var mypage = "/site-01/coming/soon-1.html";
var myname = "comingSoon";
var w = "425";
var h = "450";
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+'';

win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
////////////////////////////////////////////

////////////////////////////////////////////
function contactUs() {
var mypage = "/site-01/contact.html";
var myname = "comingSoon";
var w = "425";
var h = "380";
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+'';

win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
////////////////////////////////////////////