<!--
  function getCookie(name) { 
                var Found = false 
                var start, end 
                var i = 0 

                while(i <= document.cookie.length) { 
                     start = i 
                     end = start + name.length 
                     if(document.cookie.substring(start, end) == name) { 
                         Found = true 
                         break 
                     } 
                     i++ 
                } 

                if(Found == true) { 
                    start = end + 1 
                    end = document.cookie.indexOf(";", start) 
                    if(end < start) 
                        end = document.cookie.length 
                    return document.cookie.substring(start, end) 
                } 
                return "" 
            } 


function Tech_data() 
{ 
     var eventCookie=getCookie("Technical Data"); 
	
		gourl = "../product/tech_popup.htm";

	if (eventCookie != "no") 
	{
		window.open (gourl, "../product/tech_popup.htm", "Technical Data", "top=378,left=10, width=762, height=500, toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, copyhistory=0");
	}
}





//-->

