i cant understand this problam therefor i sending my code<br>if someone can tell me what's wrong i will appreciate it<br>baruch.<br><br><br><br><!--#include file="carTop.asp"--><br><%<br>'response.buffer=true<br>session.Timeout=120<br>%><br><html><br><br><head><br><br><META NAME="description" CONTENT="A leading real estate site with video technology and thousands of assets The site contains a variety of properties - starting from flats and houses and going to estates, commercial assets and industrial parks The site owns a remarkable searching ability and video films that enable the viewer to actually see the asset and establish his impression in a way not possible in any other way except going literally to see the asset"> <br><META NAME="keywords" CONTENT="real estate, property, assets, plots, office, villa, commercial, buildings, constructors, abroad, israel HomeUC, you see, "><br><br><META http-equiv="Content-Type"content="text/html; charset=windows-1255"><br><META name="GENERATOR" content="Microsoft FrontPage Express 2.0"><br><title>carUc</title><br><br><!**************!><br><%ccount=session("ccount"%><br><%imgloc=session("imgloc"%><br><font color="#ffffff"><br><script language="javascript"><br>//**************************************************************************<br>//********* SET UP THESE VARIABLES - MUST BE CORRECT!!!*********************<br>image_name = "<%=imgloc%>"; //the base "path/name" of the image set without the numbers<br>image_type = "jpg"; //"gif" or "jpg" or whatever your browser can display<br>//document.write ("<%=imgloc%>"<br>first_image = 1; //first image number<br>last_image = "<%=ccount%>"; //<%=ccount%>last image number<br><br> //!!! the size is very important - if incorrect, browser tries to <br> //!!! resize the images and slows down significantly<br>animation_height = 205; //height of the images in the animation<br>animation_width = 251; //width of the images in the animation<br>//**************************************************************************<br>//**************************************************************************<br><br><br><br>//=== THE CODE STARTS HERE - no need to change anything below ===<br>//=== global variables ====<br>theImages = new Array();<br>normal_delay = 1200; <br>delay = normal_delay; //delay between frames in 1/100 seconds<br>delay_step = 100;<br>delay_max = 4000;<br>delay_min = 200; <br>current_image = first_image; //number of the current image<br>timeID = null;<br>status = 1; // 0-stopped, 1-playing<br>play_mode = 2; // 0-normal, 1-loop, 2-swing<br>size_valid = 0;<br><br>//===> makes sure the first image number is not bigger than the last image number<br>if (first_image > last_image) <br>{<br> var help = last_image;<br> last_image = first_image;<br> first_image = help;<br>};<br><br>//===> preload the images - gets executed first, while downloading the page<br>for (var i = first_image; i <= last_image; i++) <br>{<br> theImages<i> = new Image();<br> //theImages<i>.onerror = my_alert("\nError loading ",image_name,i,image_type,"!"<br> //theImages<i>.onabort = my_alert("\nLoading of ",image_name,i,image_type," aborted!"<br> theImages<i>.src = image_name + i + "." + image_type;<br>};<br><br><br>//===> displays image depending on the play mode in forward direction<br>function animate_fwd() <br>{<br> current_image++;<br> if(current_image > last_image)<br> { <br> if (play_mode == 0) <br> {<br> current_image = last_image; <br> status=0;<br> return;<br> }; //NORMAL<br> if (play_mode == 1) <br> {<br> current_image = first_image; //LOOP<br> };<br> if (play_mode == 2) <br> {<br> current_image = last_image; <br> animate_rev();<br> return; <br> };<br> }; <br> document.animation.src = theImages[current_image].src;<br> document.control_form.frame_nr.value = current_image;<br> timeID = setTimeout("animate_fwd()", delay);<br>}<br><br>//===> displays image depending on the play mode in reverse direction<br>function animate_rev() <br>{<br> current_image--;<br> if(current_image < first_image)<br> { <br> if (play_mode == 0) <br> {<br> current_image = first_image; <br> status=0;<br> return;<br> }; //NORMAL<br> if (play_mode == 1) <br> {<br> current_image = last_image; //LOOP<br> };<br> if (play_mode == 2) <br> {<br> current_image = first_image; <br> animate_fwd();<br> return; <br> };<br> }; <br> document.animation.src = theImages[current_image].src;<br> document.control_form.frame_nr.value = current_image;<br> timeID = setTimeout("animate_rev()", delay);<br>}<br><br>//===> changes playing speed by adding to or substracting from the delay between frames<br>function change_speed(dv) <br>{<br> delay+=dv;<br> if(delay > delay_max) delay = delay_max;<br> if(delay < delay_min) delay = delay_min;<br>}<br><br>//===> stop the movie<br>function stop() <br>{<br> //if (status == 1) <br>clearTimeout (timeID);<br> status = 0;<br>}<br><br>//===> "play forward"<br>function fwd() <br>{<br> stop();<br> status = 1;<br> animate_fwd();<br>}<br><br>//===> jumps to a given image number<br>function go2image(number)<br>{<br> stop();<br> if (number > last_image) number = last_image;<br> if (number < first_image) number = first_image;<br> current_image = number;<br> document.animation.src = theImages[current_image].src;<br> document.control_form.frame_nr.value = current_image;<br>}<br><br>//===> "play reverse"<br>function rev() <br>{<br> stop();<br> status = 1;<br> animate_rev();<br>}<br><br>//===> changes play mode (normal, loop, swing)<br>function change_mode(mode) <br>{<br> play_mode = mode;<br>}<br><br>//===> sets everything once the whole page and the images are loaded (onLoad handler in <body><br>function launch() <br>{<br> stop();<br> current_image = first_image;<br> document.animation.src = theImages[current_image].src;<br> document.control_form.frame_nr.value = current_image;<br> // this is trying to set the text (Value property) on the START and END buttons <br> // to S(first_image number), E(last_image number). It's supposed (according to <br> // JavaScrtipt Authoring Guide) to be a read only value but for some reason<br> // it works on win3.11 (on IRIX it doesn't).<br> //document.control_form.start_but.value = " S(" + first_image + " ";<br> //document.control_form.end_but.value = " E(" + last_image + " ";<br> // this needs to be done to set the right mode when the page is manualy reloaded<br> change_mode ("2"<br>}<br><br>//===> writes the interface into the code where you want it<br> <br> function swich()<br>{<br>fwd()<br>}<br> function animation()<br>{<br> document.write(" <FORM Method=POST Name=\"control_form\"> "<br> document.write(" <INPUT TYPE=\"HIDDEN\" NAME=\"frame_nr\" VALUE=\"0\" SIZE=\"5\" "<br> document.write(" onFocus=\"this.select()\" onChange=\"go2image(this.value)\"> "<br> //document.write(" <INPUT TYPE=\"HIDDEN\" Value=\" - \" onClick=\"change_speed(delay_step)\"> speed "<br> //document.write(" <INPUT TYPE=\"HIDDEN\" Value=\" + \" onClick=\"change_speed(-delay_step)\;return false\"> "<br> document.write(" </FORM> "<br> <br>document.write(" <IMG NAME=\"animation\" SRC=\"loading.gif\" HEIGHT=",animation_height, " WIDTH=", animation_width, "\" ALT=\"[caruc Loading images]\">"<br><br> <br>};<br><br>function fwdanima()<br>{<br>if(<%=ccount%>>1){<br>fwd()}<br>}<br><br><br>function stopanima()<br>{<br>stop()<br>}<br>function fwdnsanima()<br>{<br>document.MediaPlayer.play()<br>}<br><br>function stopnsanima()<br>{<br>document.MediaPlayer.stop()<br><br>}<br><br><br></script> </p><br><br><br><br><br><script language="JavaScript" src="dynlayer.js"></script><br><br><br><br><br><br><script language="JavaScript"><br><!--<br><br>function init() {<br> DynLayerInit()<br>}<br><br><br><br><br>//--><br></script><br><style type="text/css"><br><!--<br><br>#my1Div {position:absolute; left:0; top:0; width:196; height:520; clip:rect(0,550,520,0); }<br>#my2Div {position:absolute; left:490; top:122; width:189; height:400; clip:rect(0,289,400,0); }<br>#my3Div {position:absolute; left:395; top:90; width:190; height:38; clip:rect(0,384,38,0); }<br>#my4Div {position:absolute; left:133; top:90; width:155; height:38; clip:rect(0,255,38,0); }<br>#my5Div {position:absolute; left:5; top:95; width:120; height:50; clip:rect(0,120,50,0); }<br>#my6Div {position:absolute; left:5; top:10; width:200; height:50; }<br>#my7Div {position:absolute; left:0; top:0; width:50; height:120; clip:rect(0,120,120,0); }<br>#my10Div {position:absolute; left:580; top:180; width:200; height:400; clip:rect(0,400,400,0); }<br>#my11Div {position:absolute; left:145; top:95; width:230; height:100; clip:rect(0,400,400,0); }<br>#my12Div {position:absolute; left:440; top:180; width:200; height:400; clip:rect(0,600,400,0); }<br><br>#listDiv {position:absolute; left:167; top:140; width:290; height:50; clip:rect(0,290,290,0); }<br>#mytvDiv {position:absolute; left:135; top:140; width:50; height:120; clip:rect(0,400,400,0); }<br>#myanimationDiv {position:absolute; left:185; top:200; width:205; height:251; clip:rect(0,400,400,0); }<br>#mybannerDiv {position:absolute; left:230; top:0; width:450; height:50; clip:rect(0,450,450,0); }<br>#allrightsDiv {position:absolute; left:100; top:500; width:450; height:50; clip:rect(0,450,50,0); }<br>#forsaleDiv {position:absolute; left:600; top:100; width:175; height:71; clip:rect(0,450,71,0); }<br><br>#helpDiv {position:absolute; left:5; top:150; }<br>#mediaplayerDiv {position:absolute; left:5; top:230; }<br>#carucaddressDiv {position:absolute; left:5; top:300; }<br> <br><br>--><br></style><br><br><br><br><% 'çéáåø ìåéãàå<br>'if rst.fields("video" then<br>video="../images/videoTab.jpg"<br>session("VideoLink" ="<A HREF=" TARGET="_new"> bgcolor="#ffffff" onLoad="init();launch()"LINK="#FFFFFF" VLINK="#FFFFFF" ALINK="#FFFFFF" ><br><Div id=my1Div><br> <br> <img src="images/left_zero.jpg" border="0" hspace="0"<br> width="196" height="520"><br><br> </div><br><br><br><br><Div id=my2Div><br> <br> <img src="images/img_remarks.jpg" border="0" hspace="0"<br> width="289" height="400"><br><br> <br> <br></div><br><br><Div id=my3Div><br><br><img src="images/tabs_down.jpg" border="0" hspace="0"<br> width="390" height="38"><br><br></div><br><br><Div id=my4Div><br><br><img src="images/tabs_down_yellow.jpg" border="0" hspace="0"<br> width="255" height="38"><br><br></div><br><br><br><br><Div id=my5Div><br> <form action="carmaincss.asp?dir=s&bar=1&tabs=<%=session("tabs"%>" method="POST" name="frmcity"><br><br><br> <font face="arial (hebrew)"><select<br> name="txtfirmcode" size="1" onchange="submit()"<br> align="right" size="2"><br> <option selected value="100">áçø ñåâ øëá çãù</option><br> <option value="100">äöâ àú ëì ñåâé äøëáéí</option><br> <option value="8">á.î.åå</option><br> <option value="10">äåðãä</option><br> <option value="1">ååìåå</option><br> <option value="11">èåéåèä</option><br> <option value="5">éåðãàé</option><br> <option value="9">îàæãä</option><br> <option value="4">îéöåáéùé</option><br> <option value="2">îøöãñ</option><br> <option value="3">ñåáàøå</option><br> <option value="16">ñåæå÷é</option><br> <option value="7">ñéèøåàï</option><br> <option value="14">ôåì÷ñååâï</option><br> <option value="6">ôæ'å</option><br> <option value="12">ôéàè</option><br> <option value="15">øðå</option><br> <option value="13">ùáøåìè</option><br> <br><br><br> <br><br> </select></font><br> </form><br> </div><br><Div id=my6Div><br><form action="carmaincss.asp?dir=s&bar=1&tabs=<%=session("tabs"%>" method="POST" name="frmcity"><br><font face="Arial (Hebrew)"color="red"><br><%<br>response.write("çéôåù øëá"&"<br><br>"<br>%><br></font><br><font face="Arial (Hebrew)"><br><input type="text" size="5" name="txtcarno"><br> øëá îñôø<br></font><br></form><br></div><br><br><Div id=my10Div><br><br><!ú÷öéø äøëá!><br><center><br><table><tr><br><td colspan="8" rowspan="1" bgcolor="#8C8CFF"align="right"valign="top"><br><font face="Arial (Hebrew)" size="3"><br><br><%<br>taktzir=("<font color='black'face='Arial (Hebrew)'>"&rst.fields("firm_name"&" "<br>if rst.fields("car_type_name"<>"" then taktzir=taktzir&""&rst.fields("car_type_name"&" "<br><br>if rst.fields("automatic"=true then taktzir=taktzir&"àåèåîè"&" "<br>if rst.fields("km"<>"" then taktzir=taktzir&" "&rst.fields("km"&" "&"÷éìåîèø"&" "<br><br>if rst.fields("engine_size"<>"" then taktzir=taktzir&"ðôç"&" "&rst.fields("engine_size"&" "&"ñî"&"''"&"÷"&" "<br>if rst.fields("color"<>"" then taktzir=taktzir&"öáò"&" "&rst.fields("color"&" "<br><br>if rst.fields("hand"<>"" then taktzir=taktzir&"éã"&" "& rst.fields("hand_name"&" "&""&" "<br>if rst.fields("test"<>"" then taktzir=taktzir&","&"èñè ì "&""&rst.fields("test"&" "&"çåãù"<br>if rst.fields("price"<>"" then taktzir=taktzir& rst.fields("price"&" "&"ù"&"'"&"'"&"ç"<br><br>if rst.fields("heb_remarks"<>"" then taktzir=taktzir&" "&rst.fields("heb_remarks"&" "<br><br>response.write(taktzir)<br><br>%><br></td></tr></table><br></div><br><br><Div id=my11Div><br><% <br> <br> response.write("<font face='arial (hebrew)' color='black'size='3'>"&"øëá "&" "&session("param"&" "&"îúåê "&" "&session("recordcounter"&" "&" øëáéí"&" "<br> 'if request.form(""<>"100" Then<br> 'response.write("á"&rst.fields("heb_sub_region")<br> response.write(" "&"á÷èâåøéä æå"&" "<br> 'End if<br> %><br><br><br></Div><br><br><Div id=my12Div><br><%<br>response.write("<font face='arial (hebrew)' color='red' size='2'>"<br>response.write("úåñôåú"&"<br>"<br><br>response.write("<font face='arial (hebrew)' color='black' size='2'>"<br>if rst.fields("poer_weel"=true then <br> response.write("äâä ëç" <br> response.write("<br>" <br>End if<br>if rst.fields("central_lock"=true then <br> response.write("ðòéìä îøëæéú" <br> response.write("<br>" <br>End if<br>if rst.fields("air_bag"=true then <br> response.write("ëøéåú àåéø" <br> response.write("<br>" <br>End if<br>if rst.fields("electric_window"=true then <br> response.write("çìåðåú çùîì" <br> response.write("<br>" <br>End if<br>if rst.fields("abs"=true then <br> response.write("ABS" <br> response.write("<br>" <br>End if<br>if rst.fields("imobilaizer"=true then <br> response.write("àéîåáéìééæø" <br> response.write("<br>" <br>End if<br>if rst.fields("elarm"=true then <br> response.write("àæò÷ä" <br> response.write("<br>" <br>End if<br>if rst.fields("radio"=true then <br> response.write("øãéå" <br> response.write("<br>" <br>End if<br>if rst.fields("electric_miror"=true then <br> response.write("îøàåú çùîì" <br> response.write("<br>" <br>End if<br>if rst.fields("jant_aluminium"=true then <br> response.write("âìâìé îâðæéåí" <br> response.write("<br>" <br>End if<br><br><br>%><br><br></div><br><div id="listDiv"><br><%<br>'***************************<br>'for same results<br> '÷áéòú îùúðéí ìîöéàú äðúåðéí--------------------------<br>'*****ëøèñú îëéøä/äùëøä<br>str_city="select * from Heb_Prop where car_No>0 "<br><br>'0***îñôø ðëñ<br>'if session("carno"<>"#" and session("carno"<>"" then<br>' str_city=str_city & " and Car_No=" & session("carno" <br>'end if<br>'2***òéø àå éùåá<br>if session("firm_code"<>"100" and session("firm_code"<>"" then<br> str_city=str_city & " and firm_code =" & session("firm_code" <br>end if<br>'3***ùëåðä<br>if session("car_type_name"<>"---" and session("car_type_name"<>"" then<br> str_city=str_city & " and car_type_name_code=" & session("car_type_name" <br>end if <br>'4***îçéø äúçìúé<br>if session("price"<>"" then<br> str_city=str_city & " and price>=" & session("price" <br>end if<br>'5***òã îçéø<br>if session("pricelimit"<>"" then<br> str_city=str_city & " and price<=" & session("pricelimit" <br>end if<br>'6***îîñôø çãøéí<br>if session("year" <>"---" and session("year" <>"" then<br> str_city=str_city & " and year >= " & session("year"<br>end if<br>'7***òã îñôø çãøéí<br>if session("yearlimit" <>"---" and session("yearlimit" <>"" then<br> str_city=str_city & " and year <= " & session("yearlimit"<br>end if<br>'9***î÷åîä<br>if session("km" <>"---" and session("km" <>"" then<br> str_city=str_city & " and km_Number >= " & session("km"<br>end if<br>'10***òã ÷åîä<br>if session("kmlimit" <>"---" and session("kmlimit" <>"" then<br> str_city=str_city & " and km_Number <= " & session("kmlimit"<br>end if<br>'11***îòìéú<br>if session("Automatic" <>"" then<br> str_city=str_city & " and Automatic = " & session("Automatic"<br>end if<br>'12***îæâï<br>if session("cooler" <>"" then<br> str_city=str_city & " and Air_condition = " & session("cooler"<br>end if<br>'13***çðéä<br>if session("test_month" <>"" then<br> str_city=str_city & " and test_month = " & session("test_month"<br>end if<br>Set rs_city = cnt.Execute(str_city)<br><br><br><br>%><br><form action="carmaincss.asp?rad=m&dir=s&bar=1&tabs=<%=session("tabs"%>"method="POST"name="frmlist"><br><font face="arial (hebrew)"size="2"color="red"><br><select name="txtcarno" size="1" onchange="submit()"color="red" ><br><font face="arial (hebrew)"size="2"color="red"><br><option selected value=""> øëáéí ðåñôéí á÷èâåøéä æå </option><br><% <br>taktzir=("<font color='blue'face='Arial (Hebrew)'>"&rs_city.fields("firm_name"&" "<br>if rs_city.fields("car_type_name"<>"" then taktzir=taktzir&""&rs_city.fields("car_type_name"&" "<br><br>if rs_city.fields("automatic"=true then taktzir=taktzir&"àåèåîè"&" "<br>if rs_city.fields("km"<>"" then taktzir=taktzir&" "&rs_city.fields("km"&" "&"÷éìåîèø"&" "<br><br>if rs_city.fields("engine_size"<>"" then taktzir=taktzir&"ðôç"&" "&rs_city.fields("engine_size"&" "&"ñî"&"''"&"÷"&" "<br>if rs_city.fields("color"<>"" then taktzir=taktzir&"öáò"&" "&rs_city.fields("color"&" "<br><br>if rs_city.fields("hand"<>"" then taktzir=taktzir&"éã"&" "& rs_city.fields("hand_name"&" "&""&" "<br>if rs_city.fields("test"<>"" then taktzir=taktzir&","&"èñè ì "&""&rs_city.fields("test"&" "&"çåãù"<br>if rs_city.fields("price"<>"" then taktzir=taktzir& rs_city.fields("price"&" "&"ù"&"'"&"'"&"ç"<br><br>'if rs_city.fields("heb_remarks"<>"" then taktzir=taktzir&" "&rs_city.fields("heb_remarks"&" "<br><br><br><br>Do While ii<50 and rs_city.EOF=false %> <br><option value="<br><% = rs_city("car_no" %><br>"><br><% = taktzir %><br></option><br><br><% <br>ii=ii+1<br><br>rs_city.movenext <br>taktzir=("<font color='blue'face='Arial (Hebrew)'>"&rs_city.fields("firm_name"&" "<br>if rs_city.fields("car_type_name"<>"" then taktzir=taktzir&""&rs_city.fields("car_type_name"&" "<br><br>if rs_city.fields("automatic"=true then taktzir=taktzir&"àåèåîè"&" "<br>if rs_city.fields("km"<>"" then taktzir=taktzir&" "&rs_city.fields("km"&" "&"÷éìåîèø"&" "<br><br>if rs_city.fields("engine_size"<>"" then taktzir=taktzir&"ðôç"&" "&rs_city.fields("engine_size"&" "&"ñî"&"''"&"÷"&" "<br>if rs_city.fields("color"<>"" then taktzir=taktzir&"öáò"&" "&rs_city.fields("color"&" "<br><br>if rs_city.fields("hand"<>"" then taktzir=taktzir&"éã"&" "& rs_city.fields("hand_name"&" "&""&" "<br>if rs_city.fields("test"<>"" then taktzir=taktzir&","&"èñè ì "&""&rs_city.fields("test"&" "&"çåãù"<br>if rs_city.fields("price"<>"" then taktzir=taktzir& rs_city.fields("price"&" "&"ù"&"'"&"'"&"ç"<br><br>'if rs_city.fields("heb_remarks"<>"" then taktzir=taktzir&" "&rs_city.fields("heb_remarks"&" "<br><br>response.write(taktzir)<br>%><br><br><br><% loop %><br></select><br><br></form><br></div><! div list !><br><Div id=mytvDiv><br> <table dir="ltr" border="0" cellpadding="0" cellspacing="0"<br> width="30%"><br> <tr><br> <td><img src="../images/picmedia1.jpg" align="right" border="0" hspace="0"<br> width="30" height="80"></td><br> <td ><br><br><br><MAP NAME="picmedia2map"><br><AREA SHAPE="RECT" COORDS="23, 39, 124, 56" HREF="carmaincss.asp?Dir=<&bar=1"><br><AREA SHAPE="RECT" COORDS="159, 40, 260, 56" HREF="carmaincss.asp?Dir=>&bar=1"><br></MAP><img src="../images/picmedia2.gif" border="0" width="295" height="80"hspace="0" usemap="#picmedia2map"></td><br> <br><td><A NAME ="pictures"><img src="../images/picmedia3.jpg" align="left" border="0" hspace="0"<br> width="30" height="80"></td><br> </tr><br> <tr><br> <td valign="top"><img src="../images/picmedia4.jpg" align="right" border="0" hspace="0"<br> width="30" height="210"></td><br> <td align="center" valign="top" <br> bgcolor="#000000" bordercolor="#808080"<br> bordercolordark="#808080" bordercolorlight="#808080"><br><br><br><font face="Arial (Hebrew)"color="black">carUC Presents </font><br> <br> </td><br> <td valign="top" align="left" bgcolor="#FFFFFF" ><br><img src="../images/picmedia6.jpg" width="30" height="210"></td><br> </tr><br> <tr><br> <td valign="top"><img src="../images/picmedia7.jpg" align="right" border="0" hspace="0"<br> width="30" height="50"></td><br> <td valign="top"><MAP NAME="picmedia8"><br><AREA SHAPE="RECT" COORDS="22, 27, 96, 39" HREF="javascript:vid()"><br><AREA SHAPE="RECT" COORDS="113, 18, 138, 40" HREF="javascript:stopanima()"><br><AREA SHAPE="RECT" COORDS="153, 18, 178, 40" HREF="javascript:fwdanima()"><br><AREA SHAPE="RECT" COORDS="194, 27, 267, 40" HREF="javascript:anima()"></MAP><br><img src="../images/picmedia8.gif" border="0" width="295" height="50" usemap="#picmedia8"></td><br> <td valign="top"><img src="../images/picmedia9.jpg" align="left" border="0" hspace="0"<br> width="30" height="50"></td><br> </tr><br></table><br><br> </div><br><br><Div id=myanimationDiv><br><br><script language="javascript" ><br>animation();<br></script><br></div><br><div id=mybannerDiv><br><!BANNERS!><br><% categorie_banner = "carmainpage" %><br><!--#include virtual="/_private/banner.inc"--> <br></div><br><br><Div id=allrightsDiv><br><font FACE="Arial"color="black"><br>© Copyright 1999-2000,carUC Ltd. All rights reserved.</font></font><small><small><small><small> </small></small></small></small></font><br><br></Div><br><br><Div id=forsaleDiv><br><img src="images/forsale.gif" align="left" border="0" hspace="0"<br> width="173" height="71"><br><br></Div><br><br><div id="helpDiv"><br><font face="Arial (Hebrew)"color="white" size="2"><br>ìôøñåí øëá çééâ<br><br><br>ú"à çîéùä îéìéåï<br><br><br> 03-5-000-000<br></div><br><br><div id="mediaplayerDiv"><br><A HREF="<A HREF=" TARGET="_new"> Player<br><br><br>àí àéðê øåàä åéãàå<br></A><br></div><br><br><div id="carucaddressDiv"><br><font face="Arial (Hebrew)"color="white" size="2"><br>îçôù ì÷ðåú áéú<br><br><br><a href="<A HREF=" TARGET="_new"> HREF=" TARGET="_new"> rst.Close<br> cnt.Close<br> Set rst = Nothing<br> Set cnt = Nothing<br> rs_city.Close<br> Set rs_city = Nothing<br><br><br>%><br></body><br></html>