// JavaSkript Documentfuîction showhide(thecell)

function showhide(thecell)
{	
		if(theoldcell == thecell){
			document.getElementById(thecell).style.display = 'none';
			document.getElementById(theoldcell).style.display = 'none';
			theoldcell = "";
		}
		else
		{
			
			if(theoldcell != "")
			{
				document.getElementById(theoldcell).style.display = 'none';
			}
			document.getElementById(thecell).style.display = 'block';
			theoldcell = thecell;
		}
}

/*function showhide(thecell)
	{	
		if(theoldcell == thecell){
			eval('document.all.'+thecell).style.display = 'none'
			eval('document.all.'+theoldcell).style.display = 'none'
			theoldcell = ""
		}
		else
		{
			if(theoldcell != thecell)
			{
				if(theoldcell != "")
				eval('document.all.'+theoldcell).style.display = 'none'
				eval('document.all.'+thecell).style.display = ''
				theoldcell = thecell
			}
		}
}
*/
function openBox(width,height,url){

	var w=800;
	var h=600;
	newParameter = "width=" + width + ",height=" + height + ",addressbar=no,scrollbars=no,toolbar=no,top="+h+",left="+w+", resizable=no";
    newWindow = window.open(url, "a", newParameter);
	newWindow.focus();
}		

function hideshow(object)

	{

		if(document.frmmenu.ship.checked)

		{

			document.all[object].style.display='';

		}else

		{

			document.all[object].style.display='none';

		}		

	}

