
	function openDiv(obj,arrow){
		if(document.all[obj].style.display == "none"){
			document.all[obj].style.display = "inline";
			document.all[arrow].src = "../../Images/"+LANG+"/Homepage/arrow_opened.gif";
		}else{	
			document.all[obj].style.display = "none";
			document.all[arrow].src = "../../Images/"+LANG+"/Homepage/arrow_closed.gif";
		}	
	}
	////////////////////////
	function openDiv1(){
		if(document.Form1.type.value == 0) return;
		if(document.Form1.type.value == 1){
			openDiv('loginClients','imgHarrow');
		}else{
			openDiv('loginInvest','imgHarrow1');
		}
	}
	////////////////////////////
	function login(num){
		if(document.Form1["user"+num].value==""){
			alert("Please enter username");
			return false
		}
		if(document.Form1["pass"+num].value==""){
			alert("please enter password");
			return false
		}
		document.Form1.username.value = document.Form1["user"+num].value;
		document.Form1.password.value = document.Form1["pass"+num].value;
		document.Form1.type.value = num;
		
		document.Form1.submit();
	}
	////////////////////////
	function IBI(url) { 
		window.open(url + "?c=106&w="+window.screen.width + "&h=" + window.screen.availHeight, "ordernet", "width=" + (window.screen.width - 10) + ",height=" + (window.screen.availHeight - 30) + ",fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no", replace=true)
	}

	function goToPoalim(){
		try{
			document.all["formPoalim"].submit()
		}catch(e){}	
	}
	/////////////////////////////////
	function TradeOnline()
   {

        var h = window.screen.availHeight-30;      //The window height

        var w = window.screen.width-10;                          //The window width

        var t = 0;                                                                                               //The window's distance from the top of the screen

        var l = 0;                                                                                                //The window's distance from the left of the screen



        var win1=window.open("https://ibi.ordernet.co.il/Opener/Opener.asp?c=106&w=" + window.screen.width + "&h=" + window.screen.availHeight, "ordernet","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l + ",fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbar=no,resizable=no", "replace=true");

        win1.focus();

  }


