<!-- main -->

  function close_create_account_form() {
	  jQuery('#create_account_main').empty();
	  window.scrollBy(0,1);
  }
  
	window.onerror = function(){
		return true;
	}
	window.onerror();
  
function setCookie (name, value, expires, path, domain, secure) {
  document.cookie = name + "=" + escape(value) +
    ((expires) ? "; expires=" + expires : "") +
    ((path) ? "; path=" + path : "") +
    ((domain) ? "; domain=" + domain : "") +
    ((secure) ? "; secure" : "");
}    

<!-- send mail -->

function show_send_mail(param) {
  	
	jQuery("#send_mail").dialog({height:750,width:434});
 	document.getElementById('send_mail').style.display="block";
	  
    if ( param != 'send' ) { 
      var url = "ajax_actions.php?action=send_mail_reload";
      var post_content = {};
    } else {
      var url = "ajax_actions.php?action=send_mail_reload_send";
      post_content = {"firstname_send" : jQuery('#firstname_send').val(), 
                      "telephone_send" : jQuery('#telephone_send').val(),
                      "email_send"     : jQuery('#email_send').val(),                      
                      "icq_send"       : jQuery('#icq_send').val(),
                      "email_to_send"  : jQuery('#email_to_send').val(),
                      "technical_send" : jQuery('#technical_send').is(':checked'),
                      "comment_send"   : jQuery('#comment_send').val(),
                      "captcha_send"   : jQuery('#captcha_send').val()                                                                                                              
                     };
          
    }      
 
	  jQuery("#send_mail").load(url, post_content, function() {
	    
   });
          
    return false;
  }
  
  function close_send_mail_form() {
	  jQuery('#send_mail').empty();
	  window.scrollBy(0,1);
  }
  
<!-- magnitola_selector -->

function show_magnitola_selector_prodlist(products_id) 
  {
	jQuery("#magnitola_main").dialog({height:725,width:900});
 	document.getElementById('magnitola_main').style.display="block";
	var url = ""; 
	if(products_id>0) {
		url = "ajax_actions.php?action=magnitola_reload&products_id="+products_id; 
	} else {
		url = "ajax_actions.php?action=magnitola_reload"; 
	}

	jQuery("#magnitola_main").load(url, {}, function(){ 
		$('magintola_selector_window').setStyle({visibility:'visible'});
		if(document.getElementById("magnitola_image").src != "images/pixel_trans.gif") {
			document.getElementById("magnitola_image").style.visibility = "visible" ;
		}		
		
		return false;	   
	});
  }

  function close_magnitola_form() {
	jQuery('#magnitola_main').empty();
	window.scrollBy(0,1);
 }
