function PopGear(url)
{
	url = "pop-gears/"+url;
	features = "width=250,height=250,scrollbars=no,menus=no";
	temp = window.open(url,"SoldierGear",features);
	temp.focus();
}
function PopMap(url,width,height)
{
	
	features = "width="+width+",height="+height+",scrollbars=yes,menus=no";
	temp = window.open(url,"WarMap",features);
	temp.focus();
}

