function StartDld(URL,Name)
 {
	//window.open("startdld.php?App=" + URL + "&Name=" + Name, "","resizable=no,status=no,location=no,toolbar=no,width=550,height=250");
 }

 function OpenWnd(URL,w,h)
 { 
	param = "resizable=0,status=no,location=no,toolbar=no,width=" + w + ",height=" + h;
	window.open(URL, "",param);
 }
  function SendMail(n)
 {
 	window.open("mailto:" + n + "@" + "soft" +    "-"   +  "central.net");
 }
 function SendMail(n,s)
 {
 	window.open("mailto:" + n + "@" + "soft" +    "-"   +  "central.net?Subject=" + s);
 }
 function over_effect(E,state)
 {
 	over_effect(E,state,"#FFFFFF");	
 }
 function curpage()
 {
 	var tbm = null;
 	if (document.all)
 		tbm = document.all['tbmenu'];
 	else if (document.getElementById)
 		tbm = document.getElementById('tbmenu');
 	if (tbm)
 	{
 		var tbd = tbm.children[0];
 		for (i=0; null != tbd.children[i] ; i++)
 		{
 			if (null != tbd.children[i].children[0].children[0]
 			 		&& null != tbd.children[i].children[0].children[0].href)
 			{
 				if (tbd.children[i].children[0].children[0].href == window.location)
 				{
 					//tbd.children[i].children[0].style.borderStyle ='solid';
// 					tbd.children[i].children[0].style.background ='#FF9519';
					tbd.children[i].children[0].children[0].style.color= '#FF9519';
 				}
 				//else
 					tbd.children[i].children[0].style.background ='#FFFFFF';
 			}
 		}
 	}
 }
 function over_effect(e,state,backgnd)
 {
	if (document.all)
		source4=event.srcElement
	else if (document.getElementById)
		source4=e.target
	if (source4.className=="menulines" || source4.className=="menuhdr")
	{
		if (source4.all[0] && source4.all[0].href != window.location)
		{
			source4.style.borderColor=backgnd;
			source4.style.background=state == 'solid' ? backgnd : "";		
		}
	}
	else
	{
		while(source4.tagName!="TABLE")
		{
			source4=document.getElementById? source4.parentNode : source4.parentElement
			if (source4.className=="menulines" || source4.className=="menuhdr")
			{	
				if (source4.all[0] && source4.all[0].href != window.location)
				{
					source4.style.borderColor=backgnd;
					source4.style.background=state == 'solid' ? backgnd : "";		
				}	
			}
		}
	}
}