

var c=new Array();
c['us']='United States';
c['korea']='Korea (Republic of)';
c['japan']='Japan';
var ctag=Array('country:us','country:korea','country:japan');


var l=new Array();
l['ny']='New York';
l['ma']='Massachussetts';


function test(t)
{
alert(t);
}


function set_country(t)
{
alert(ctag[t]);
}



function open_job_panel()
{
var t=window.document.location.href;
x=t.split('/');
//alert(x[3]);
//document.getElementById("nav_panel").style.width="750px";
document.getElementById("nav_panel").style.height="72px";
document.getElementById("nav_panel").style.visibility="visible";
document.getElementById("nav_panel").innerHTML='<div style="margin:10px;width:500px;color:#505050;"><select onchange="set_country(this.selectedIndex);" id="country_select" name="country_select" style="width:120px;height20px;font-family:tahoma,AppleGothic;font-size:9pt;">'+'<option>'+c[x[4]]+'</option><option>canada</option>'+'</select>&nbsp;<input type="select" style="width:120px;height:20px;font-family:tahoma,AppleGothic;font-size:9pt;">&nbsp;<input type="select" style="width:120px;height:20px;font-family:tahoma,AppleGothic;font-size:9pt;">&nbsp;<br><input type="text" style="width:120px;height:20px;font-family:tahoma,AppleGothic;font-size:9pt;">&nbsp;<br><input type="text" style="width:120px;height:20px;font-family:tahoma,AppleGothic;font-size:9pt;">hello@@@@@@@@@@@@@@@&nbsp;<input type="button" onclick="test(document.getElementById(\'country_select\').selectedIndex);return false;"><br></div>';
str='country X';//c['korea'];
//document.getElementById("country_select").innerHTML='<option>hello</option>';
//t.innerHTML="hello";
}