var p_id = 0;

function _getElement(id)
{
	if (document.getElementById && document.getElementById(id)) {
		return document.getElementById(id);
	}
	else if (document.all && document.all[id]) {
		return document.all[id];
	}
	else {
		return false;
	}
}


function showMapa(page){
  <!-- firefox then ie, methods are different for showing child window -->
  if (!document.all) { oWindow = window.open(page,
  'windowname', 'width=590,height=400,resizable=no,status=no,scrollbars=no,dialog=yes');}
  else{
   window.open (page,"mywindow","location=1,status=1,scrollbars=0,width=590,height=400");
  //window.open(page,'_blank','mywindow','height=400px, width=590px');
  }
}  // end function showMapa - BC 2/6/07


function setBlockDisplay(id,display_type)
{
	_getElement(id).style.display = display_type;
}

/*
function toggleRows(cid,on_off) {
if (document.getElementById) {
document.getElementById(cid).style.display = (on_off) ? 'block' : 'none';
}
}*/


function showLarge(prod_id)
{
	if (p_id > 0) prod_id = p_id;
	
	var width = 450;
	var height = 450;

	if (showLarge.arguments.length == 3) {
		width  = showLarge.arguments[1];
		height = showLarge.arguments[2];
	}

	var newwin = window.open('/show_large.php?id='+prod_id+'&width='+width+'&height='+height, 'BigPic', 'screenX=20,screenY=20,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+(width+5)+',height='+(height+5));
	newwin.focus();
}

/*function bookmarkMe(addr,name)
{
var res;
	if (window.sidebar) {
		res = window.sidebar.addPanel(addr, name,"");
	} else if (window.external) {
		res = window.external.AddFavorite(addr,name);
	} else {
		res = false;
	}
	if(!res) {
		alert("Sorry. Your configuration does not allow automated bookmarks. Please bookmark this page manually from the Bookmarks menu or by pressing Ctrl-D on the keyboard.");
	}
}*/