/***************************************************************************
Last Updated: Feb. 25, 2002
***************************************************************************/

/***************************************************************************
                         Javascript Client-side functions
***************************************************************************/


   function OpenCBS(url) {
	           open("/global/scripts/jump_frame.asp?content=" + url,"CBS","width=575,height=515,left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=yes,status=no,dependent=no,scrollbars=yes");
	}
	
    function OpenDemo(url) {
	           open("/global/scripts/jump_frame.asp?content=" + url,"demo","width=610,height=410,left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=yes,status=no,dependent=no,scrollbars=yes");
	}
	
    function OpenOnlineDemo(url) {
	           open("/global/scripts/jump_frame.asp?content=" + url,"onlinedemo","width=810,height=625,left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=no,status=no,dependent=no,scrollbars=no");
	}
	  
	function OpenPDF(url,closelabel) {
		if(!closelabel) closelabel="";
	           open("/global/scripts/jump_frame.asp?content=" + url + "&CloseLabel=" + closelabel,"pdf","width=610,height=480,left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=yes,status=no,dependent=no,scrollbars=yes");
	}
	
	function OpenVideo(url) {
	           open("/global/scripts/jump_frame.asp?content=" + url,"video","width=545,height=420,left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=no,status=no,dependent=no,scrollbars=no");
	}
	
	function OpenMediaPlayer(url,closelabel,country) {
	           open("/global/scripts/jump_frame.asp?CloseLabel=" + closelabel + "&country=" + country + "&content=" + url,"video","width=545,height=420,left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=no,status=no,dependent=no,scrollbars=no");
	}
	
	function OpenSite(url,width,height,closelabel) {
		if(!closelabel) closelabel="";
	           open("/global/scripts/jump_frame.asp?content=" + escape(url) + "&CloseLabel=" + closelabel,"site","width="+width+",height="+height+",left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=yes,status=no,dependent=no,scrollbars=no");
	}

	function OpenSite640(url,closelabel) {
		if(!closelabel) closelabel="";
	           open("/global/scripts/jump_frame.asp?content=" + escape(url) + "&CloseLabel=" + closelabel,"site","width=640,height=480,left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=yes,status=no,dependent=no,scrollbars=no");
	}
	
	function OpenSitePrebooking(url,closelabel,title,country) {
		if(!closelabel) closelabel="";
	           open("/global/scripts/jump_frame.asp?pagetitle=" + title + "&country=" + country + "&content=" + escape(url) + "&CloseLabel=" + closelabel,"site","width=640,height=480,left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=yes,status=no,dependent=no,scrollbars=no");
	}


		   function nameParent(newName,url) {
		   window.name = newName;
	           OpenSite800(url)
	}

	function OpenSite800(url,closelabel) {
		if(!closelabel) closelabel="";
	           open("/global/scripts/jump_frame.asp?content=" + escape(url) + "&CloseLabel=" + closelabel,"site","width=800,height=520,left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=yes,status=no,dependent=no,scrollbars=no");
	}

	function OpenCSP() {
	           open('/partners/software/directory/directory.asp','csp','width=650,height=450,left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=yes,status=no,dependent=no,scrollbars=yes');
	}

	function OpenCalc(url,title,width,height) {
	           open("/global/scripts/jump_frame.asp?CalcDisplay=1&content=" + escape(url) +"&title=" + escape(title),"site","width="+width+",height="+height+",left=20,top=20,menubar=no,toolbar=no,locationbar=no,resizable=yes,status=no,dependent=no,scrollbars=no");
	}
	
	function OpenCalc_(url) {
	           open( url,'calc','width=900,height=600,menubar=yes,toolbar=yes,locationbar=yes,resizable=yes,status=no,dependent=no,scrollbars=yes');
	}
	
 	function OpenWebcast (url, title) {
    		 open(url, title, 'width=762,height=700,left=0,top=0,menubar=no,toolbar=no,locationbar=no,directories=no,resizable=yes,status=no,dependent=no');
    }  
	function openBrWindow(theURL,winName,features){
  		window.open(theURL,winName,features);
	}

function Search_SpecChar(){
   if(document.SAPcom_search.ct.value=="poland"){
	var search_query;
	var query_len;
	search_query=document.SAPcom_search.q1.value;
	query_len=search_query.length;
	var ucode;
	ucode="";

	for(i=0;i<query_len;i++){
		if(i==query_len-1){
			ucode=ucode + search_query.charCodeAt(i);
		}else{
			ucode=ucode + search_query.charCodeAt(i) + "-";
		}
	}
	document.SAPcom_search.q2.name="q1";
	document.SAPcom_search.q2.value=ucode;
	document.SAPcom_search.q1.name="q2";
    }
}