﻿// JScript File
function expand(id)
{
     var divStyle = document.getElementById(id).style;
	  divStyle.display = divStyle.display == "" ? "none" : "";
	//return false;
}
function toggle(id)
{
     var divStyle = document.getElementById(id).style;
	  divStyle.display = divStyle.display == "" ? "none" : "";
}
 function Post(btn)
 {
   __doPostBack(btn, "")
 }
 
 function trimiteComanda()
 {
    toggle("table_formular");
  //  alert(document.getElementById("lnkTrimite").InnerHTML);
    document.getElementById("lnkTrimite").InnerHTML = "";
 }
  
// this function gets the cookie, if it exists
function Get_Cookie( name ) {
	
var start = document.cookie.indexOf( name + "=" );
var len = start + name.length + 1;
if ( ( !start ) &&
( name != document.cookie.substring( 0, name.length ) ) )
{
return null;
}
if ( start == -1 ) return null;
var end = document.cookie.indexOf( ";", len );
if ( end == -1 ) end = document.cookie.length;
return unescape( document.cookie.substring( len, end ) );
}
	


// this deletes the cookie when called
function deleteCookie( name, path, domain ) 
{
if ( Get_Cookie( name ) ) 
{
    path = '/';
    //alert("del cookie"+name+"-"+path+"-"+domain);
    document.cookie = name + "=" +
    ( ( path ) ? ";path=" + path : "") +
    ( ( domain ) ? ";domain=" + domain : "" ) +
    ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
    window.location.href= 'ListaPreturi.aspx';
}
}

function PopupPic(sPicURL) 
{
	window.open( "pop.htm?"+sPicURL, "", "resizable=no, scrollbars=yes");
}

function setProduct(name) 
{
        document.getElementById("hdnProduct").value = name;
        document.getElementById("btnAdd").click();
}
	
