function show_cond(thistag) {
   styleObj=document.getElementById(thistag).style;
   if (styleObj.display=='none') {styleObj.display='';}
   // else {styleObj.display='none';}
}

function education_cond(thistag) {
   styleObj=document.getElementById(thistag).style;
   selectObj=document.form1.HighestEduc.options[document.form1.HighestEduc.selectedIndex];
   if (selectObj.value > 2 && selectObj.value != 4) {styleObj.display='';}
   else {styleObj.display='none';}
}

function hide_cond(thistag) {
   styleObj=document.getElementById(thistag).style;
   if (styleObj.display=='') {styleObj.display='none';}
}


var newwindow;
function popup_job(url)
{
	// newwindow=window.open('./job_description.php?name=' + url,'name','height=400,width=500');
	newwindow=window.open('./job_description.php?joborder_id=' + url,'name', 'type=fullWindow,fullscreen,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
