<!-- 
function openWin(location){
var n_width  = Math.round(0.7 * screen.availWidth);
var n_height = Math.round(0.6 * screen.availHeight);
var pos_x    = Math.round(0.1 * screen.availWidth);
var pos_y    = Math.round(0.1 * screen.availHeight);
var paramWin = 'location,menubar,resizable,scrollbars,status,toolbar'; 
var paramSize = 'width=' + n_width + ',' + 'height=' + n_height + ',';
//var paramSizeNS = 'innerWidth=' + n_width + ',' + 'innerHeight=' + n_height + ',';
//var paramPos = 'screenX=' + pos_x + ',' + 'screenY=' + pos_y + ',';
var paramPosNS = 'left=' + pos_x + ',' + 'top=' + pos_y + ',';
var params = paramSize + paramPosNS + paramWin;
newWin = window.open(location,'',params);
}
function jump(location)
{
  //check if valid target
  if(location!=window.top.document.location.href)
  window.top.frames['main'].document.location.href=location;
}


//on masters's index page, jumps to the different category sections
function select_category($select){
	parent.main.location.hash = '#pos_' + $select.options[$select.selectedIndex].value;
	parent.main.focus();
}

//on master's index page, selects by country
function select_country($select){
	if ($select.options[$select.selectedIndex].value == "no_action") {
		return;
	}
	else {
		parent.main.location = 'center.php?dom=' + $select.options[$select.selectedIndex].value;// + '#pos_' + document.navigate.category[document.navigate.category.selectedIndex].value; 
		// + '?pos=' + document.navigate.category[document.navigate.category.selectedIndex].value;
		top.top1frame.location = 'top.php?dom=' + $select.options[$select.selectedIndex].value;
		//parent.topFrame.location.reload;
		parent.topFrame.location = 'title.php?dom=' + $select.options[$select.selectedIndex].value;// + '&cat=choose';
		//setTimeout("parent.main.location.hash = '#pos_' + document.navigate.category[document.navigate.category.selectedIndex].value", 1000);
		parent.main.focus();
	}
}
// -->

	

