function preload() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=preload.arguments; for(i=0; i<a.length; i++)
	if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}	
}
function over1(pic,obj){
	obj.src=pic;	
}

function showSubMenu(id)
{
	var obj = document.getElementById(id);
	
	if(obj)
		obj.style.display = 'block';
}

function hideSumMenu(id)
{
	var obj = document.getElementById(id);
	
	if(obj)
		obj.style.display = 'none';
}

function bigPic(pic){
	var Cont="";
	var objIMG= new Image;
	objIMG.src=pic;
	var wihe="height="+objIMG.height+", width="+objIMG.width+", scrollbars";
	//alert(wihe);
	NewWin=window.open('','',wihe);
	Cont='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /><title>picture</title></head><body style="margin: 0px;"><img src="'+pic+'" alt=""/></body></html>';
	NewWin.document.write(Cont);
	NewWin.document.close();
}

function setHome(obj) 
{

  if (document.all) 
  {
    obj.style.behavior='url(#default#homepage)';
    obj.setHomePage('http://www.cargo-express.net');

  } 
  else 
    if(!document.layers) 
    {
      netscape.security.PrivilegeManager.enablePrivilege("UniversalPreferencesWrite");
      navigator.preference("browser.startup.homepage", "http://www.cargo-express.net"); 
    }
}
//красит ячейки таблици
function mark(id, state)
{
	if(state)
	{
		document.getElementById("OrderTable").rows[id].style.background = "#FFCC00";
		document.getElementById("OrderTable").rows[id].style.color = "#000000";
	}
	else
	{
		document.getElementById("OrderTable").rows[id].style.background = "#355D91";
		document.getElementById("OrderTable").rows[id].style.color = "#FFFFFF";
	}
}