function newWindow(url, width, height) {
        var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,status=no,left=250,top=100,screenX=0,screenY=0');
		Win.focus();
}

function newWindow2(url, width, height) {
        var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,status=no,left=250,top=400,screenX=0,screenY=0');
}

function setUp() {
	makeBalloon("Japanese" ,100, "Coming soon");
	//makeBalloon("Japanese" ,100, "<img src='/common/graphics/nav/Jap-ComingSoon.gif'>");
}

function makeBalloon(id, width, message) {
  var astr = '<STYLE TYPE="text/css">#'+id+'{width:'+width+';}</STYLE>';
   astr+='<DIV CLASS="balloon" id="'+id+'" align="center">'+message+'</DIV>';
   document.write(astr);
}

function makeVisible(id, event) {
	document.all[id].style.pixelLeft = (document.body.scrollLeft +event.clientX) - 5;
        	document.all[id].style.pixelTop = (document.body.scrollTop + event.clientY) - 20;
	document.all[id].style.visibility="visible";
}


function hide(id) {
	document.all[id].style.visibility="hidden";
}

