Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

my layers/site look bad in netscape but good in IE

Status
Not open for further replies.

barbar

Technical User
Jul 13, 2000
4
IL
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>&lt;!--#include file=&quot;carTop.asp&quot;--&gt;<br>&lt;%<br>'response.buffer=true<br>session.Timeout=120<br>%&gt;<br>&lt;html&gt;<br><br>&lt;head&gt;<br><br>&lt;META NAME=&quot;description&quot; CONTENT=&quot;A leading real estate site with video technology and thousands of assets&nbsp;&nbsp;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&quot;&gt; <br>&lt;META NAME=&quot;keywords&quot; CONTENT=&quot;real estate, property, assets, plots, office, villa, commercial, buildings, constructors, abroad, israel HomeUC, you see, &quot;&gt;<br><br>&lt;META http-equiv=&quot;Content-Type&quot;content=&quot;text/html; charset=windows-1255&quot;&gt;<br>&lt;META name=&quot;GENERATOR&quot; content=&quot;Microsoft FrontPage Express 2.0&quot;&gt;<br>&lt;title&gt;carUc&lt;/title&gt;<br><br>&lt;!**************!&gt;<br>&lt;%ccount=session(&quot;ccount&quot;)%&gt;<br>&lt;%imgloc=session(&quot;imgloc&quot;)%&gt;<br>&lt;font color=&quot;#ffffff&quot;&gt;<br>&lt;script language=&quot;javascript&quot;&gt;<br>//**************************************************************************<br>//********* SET UP THESE VARIABLES - MUST BE CORRECT!!!*********************<br>image_name = &quot;&lt;%=imgloc%&gt;&quot;;&nbsp;&nbsp;//the base &quot;path/name&quot; of the image set without the numbers<br>image_type = &quot;jpg&quot;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//&quot;gif&quot; or &quot;jpg&quot; or whatever your browser can display<br>//document.write (&quot;&lt;%=imgloc%&gt;&quot;)<br>first_image = 1;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//first image number<br>last_image = &quot;&lt;%=ccount%&gt;&quot;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//&lt;%=ccount%&gt;last image number<br><br>&nbsp;&nbsp;&nbsp;//!!! the size is very important - if incorrect, browser tries to <br>&nbsp;&nbsp;&nbsp;//!!! resize the images and slows down significantly<br>animation_height = 205;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//height of the images in the animation<br>animation_width = 251;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//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;&nbsp;&nbsp;<br>delay = normal_delay;&nbsp;&nbsp;//delay between frames in 1/100 seconds<br>delay_step = 100;<br>delay_max = 4000;<br>delay_min = 200; <br>current_image = first_image;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//number of the current image<br>timeID = null;<br>status = 1;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// 0-stopped, 1-playing<br>play_mode = 2;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// 0-normal, 1-loop, 2-swing<br>size_valid = 0;<br><br>//===&gt; makes sure the first image number is not bigger than the last image number<br>if (first_image &gt; last_image) <br>{<br>&nbsp;&nbsp;&nbsp;var help = last_image;<br>&nbsp;&nbsp;&nbsp;last_image = first_image;<br>&nbsp;&nbsp;&nbsp;first_image = help;<br>};<br><br>//===&gt; preload the images - gets executed first, while downloading the page<br>for (var i = first_image; i &lt;= last_image; i++) <br>{<br>&nbsp;&nbsp;&nbsp;theImages<i> = new Image();<br>&nbsp;&nbsp;&nbsp;//theImages<i>.onerror = my_alert(&quot;\nError loading &quot;,image_name,i,image_type,&quot;!&quot;);<br>&nbsp;&nbsp;&nbsp;//theImages<i>.onabort = my_alert(&quot;\nLoading of &quot;,image_name,i,image_type,&quot; aborted!&quot;);<br>&nbsp;&nbsp;&nbsp;theImages<i>.src = image_name + i + &quot;.&quot; + image_type;<br>};<br><br><br>//===&gt; displays image depending on the play mode in forward direction<br>function animate_fwd() <br>{<br>&nbsp;&nbsp;&nbsp;current_image++;<br>&nbsp;&nbsp;&nbsp;if(current_image &gt; last_image)<br>&nbsp;&nbsp;&nbsp;{ <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (play_mode == 0) <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;current_image = last_image; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;status=0;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//NORMAL<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (play_mode == 1) <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;current_image = first_image; //LOOP<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (play_mode == 2) <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;current_image = last_image; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;animate_rev();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};<br>&nbsp;&nbsp;&nbsp;};&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;document.animation.src = theImages[current_image].src;<br>&nbsp;&nbsp;&nbsp;document.control_form.frame_nr.value = current_image;<br>&nbsp;&nbsp;&nbsp;timeID = setTimeout(&quot;animate_fwd()&quot;, delay);<br>}<br><br>//===&gt; displays image depending on the play mode in reverse direction<br>function animate_rev() <br>{<br>&nbsp;&nbsp;&nbsp;current_image--;<br>&nbsp;&nbsp;&nbsp;if(current_image &lt; first_image)<br>&nbsp;&nbsp;&nbsp;{ <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (play_mode == 0) <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;current_image = first_image; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;status=0;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//NORMAL<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (play_mode == 1) <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;current_image = last_image; //LOOP<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (play_mode == 2) <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;current_image = first_image; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;animate_fwd();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};<br>&nbsp;&nbsp;&nbsp;};&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;document.animation.src = theImages[current_image].src;<br>&nbsp;&nbsp;&nbsp;document.control_form.frame_nr.value = current_image;<br>&nbsp;&nbsp;&nbsp;timeID = setTimeout(&quot;animate_rev()&quot;, delay);<br>}<br><br>//===&gt; changes playing speed by adding to or substracting from the delay between frames<br>function change_speed(dv) <br>{<br>&nbsp;&nbsp;&nbsp;delay+=dv;<br>&nbsp;&nbsp;&nbsp;if(delay &gt; delay_max) delay = delay_max;<br>&nbsp;&nbsp;&nbsp;if(delay &lt; delay_min) delay = delay_min;<br>}<br><br>//===&gt; stop the movie<br>function stop() <br>{<br>&nbsp;&nbsp;&nbsp;//if (status == 1) <br>clearTimeout (timeID);<br>&nbsp;&nbsp;&nbsp;status = 0;<br>}<br><br>//===&gt; &quot;play forward&quot;<br>function fwd() <br>{<br>&nbsp;&nbsp;&nbsp;stop();<br>&nbsp;&nbsp;&nbsp;status = 1;<br>&nbsp;&nbsp;&nbsp;animate_fwd();<br>}<br><br>//===&gt; jumps to a given image number<br>function go2image(number)<br>{<br>&nbsp;&nbsp;&nbsp;stop();<br>&nbsp;&nbsp;&nbsp;if (number &gt; last_image) number = last_image;<br>&nbsp;&nbsp;&nbsp;if (number &lt; first_image) number = first_image;<br>&nbsp;&nbsp;&nbsp;current_image = number;<br>&nbsp;&nbsp;&nbsp;document.animation.src = theImages[current_image].src;<br>&nbsp;&nbsp;&nbsp;document.control_form.frame_nr.value = current_image;<br>}<br><br>//===&gt; &quot;play reverse&quot;<br>function rev() <br>{<br>&nbsp;&nbsp;&nbsp;stop();<br>&nbsp;&nbsp;&nbsp;status = 1;<br>&nbsp;&nbsp;&nbsp;animate_rev();<br>}<br><br>//===&gt; changes play mode (normal, loop, swing)<br>function change_mode(mode) <br>{<br>&nbsp;&nbsp;&nbsp;play_mode = mode;<br>}<br><br>//===&gt; sets everything once the whole page and the images are loaded (onLoad handler in &lt;body&gt;)<br>function launch() <br>{<br>&nbsp;&nbsp;&nbsp;stop();<br>&nbsp;&nbsp;&nbsp;current_image = first_image;<br>&nbsp;&nbsp;&nbsp;document.animation.src = theImages[current_image].src;<br>&nbsp;&nbsp;&nbsp;document.control_form.frame_nr.value = current_image;<br>&nbsp;&nbsp;&nbsp;// this is trying to set the text (Value property) on the START and END buttons <br>&nbsp;&nbsp;&nbsp;// to S(first_image number), E(last_image number). It's supposed (according to <br>&nbsp;&nbsp;&nbsp;// JavaScrtipt Authoring Guide) to be a read only value but for some reason<br>&nbsp;&nbsp;&nbsp;// it works on win3.11 (on IRIX it doesn't).<br>&nbsp;&nbsp;&nbsp;//document.control_form.start_but.value = &quot; S(&quot; + first_image + &quot;) &quot;;<br>&nbsp;&nbsp;&nbsp;//document.control_form.end_but.value = &quot; E(&quot; + last_image + &quot;) &quot;;<br>&nbsp;&nbsp;&nbsp;// this needs to be done to set the right mode when the page is manualy reloaded<br>&nbsp;&nbsp;&nbsp;change_mode (&quot;2&quot;);<br>}<br><br>//===&gt; writes the interface into the code where you want it<br>&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;function swich()<br>{<br>fwd()<br>}<br>&nbsp;&nbsp;function animation()<br>{<br>&nbsp;&nbsp;&nbsp;document.write(&quot; &lt;FORM Method=POST Name=\&quot;control_form\&quot;&gt; &quot;);<br>&nbsp;&nbsp;&nbsp;document.write(&quot;&nbsp;&nbsp;&nbsp;&nbsp;&lt;INPUT TYPE=\&quot;HIDDEN\&quot; NAME=\&quot;frame_nr\&quot; VALUE=\&quot;0\&quot; SIZE=\&quot;5\&quot; &quot;);<br>&nbsp;&nbsp;&nbsp;document.write(&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;onFocus=\&quot;this.select()\&quot; onChange=\&quot;go2image(this.value)\&quot;&gt; &quot;);<br>&nbsp;&nbsp;&nbsp;//document.write(&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;INPUT TYPE=\&quot;HIDDEN\&quot; Value=\&quot; - \&quot; onClick=\&quot;change_speed(delay_step)\&quot;&gt; speed &quot;);<br>&nbsp;&nbsp;&nbsp;//document.write(&quot;&nbsp;&nbsp;&nbsp;&nbsp;&lt;INPUT TYPE=\&quot;HIDDEN\&quot; Value=\&quot; + \&quot; onClick=\&quot;change_speed(-delay_step)\;return false\&quot;&gt; &quot;);<br>&nbsp;&nbsp;&nbsp;document.write(&quot; &lt;/FORM&gt; &quot;);<br>&nbsp;&nbsp;<br>document.write(&quot; &lt;IMG NAME=\&quot;animation\&quot; SRC=\&quot;loading.gif\&quot; HEIGHT=&quot;,animation_height, &quot; WIDTH=&quot;, animation_width, &quot;\&quot; ALT=\&quot;[caruc Loading images]\&quot;&gt;&quot;);<br><br>&nbsp;&nbsp;<br>};<br><br>function fwdanima()<br>{<br>if(&lt;%=ccount%&gt;&gt;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>&lt;/script&gt; &lt;/p&gt;<br><br><br><br><br>&lt;script language=&quot;JavaScript&quot; src=&quot;dynlayer.js&quot;&gt;&lt;/script&gt;<br><br><br><br><br><br>&lt;script language=&quot;JavaScript&quot;&gt;<br>&lt;!--<br><br>function init() {<br> DynLayerInit()<br>}<br><br><br><br><br>//--&gt;<br>&lt;/script&gt;<br>&lt;style type=&quot;text/css&quot;&gt;<br>&lt;!--<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);&nbsp;&nbsp;}<br>#my5Div {position:absolute; left:5; top:95; width:120; height:50; clip:rect(0,120,50,0);&nbsp;&nbsp;&nbsp;}<br>#my6Div {position:absolute; left:5; top:10; width:200; height:50;&nbsp;&nbsp;}<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);&nbsp;&nbsp;}<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);&nbsp;&nbsp;}<br>#myanimationDiv {position:absolute; left:185; top:200; width:205; height:251; clip:rect(0,400,400,0);&nbsp;&nbsp;}<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;&nbsp;&nbsp;}<br>#carucaddressDiv {position:absolute; left:5; top:300; }<br>&nbsp;&nbsp;<br><br>--&gt;<br>&lt;/style&gt;<br><br><br><br>&lt;% 'çéáåø ìåéãàå<br>'if rst.fields(&quot;video&quot;) then<br>video=&quot;../images/videoTab.jpg&quot;<br>session(&quot;VideoLink&quot;) =&quot;<A HREF=" TARGET="_new"> bgcolor=&quot;#ffffff&quot; onLoad=&quot;init();launch()&quot;LINK=&quot;#FFFFFF&quot;&nbsp;&nbsp;VLINK=&quot;#FFFFFF&quot;&nbsp;&nbsp;ALINK=&quot;#FFFFFF&quot; &gt;<br>&lt;Div id=my1Div&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&lt;img src=&quot;images/left_zero.jpg&quot;&nbsp;&nbsp;border=&quot;0&quot; hspace=&quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;width=&quot;196&quot; height=&quot;520&quot;&gt;<br><br> &lt;/div&gt;<br><br><br><br>&lt;Div id=my2Div&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&lt;img src=&quot;images/img_remarks.jpg&quot;&nbsp;&nbsp;border=&quot;0&quot; hspace=&quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;width=&quot;289&quot; height=&quot;400&quot;&gt;<br><br> <br> <br>&lt;/div&gt;<br><br>&lt;Div id=my3Div&gt;<br><br>&lt;img src=&quot;images/tabs_down.jpg&quot;&nbsp;&nbsp;border=&quot;0&quot; hspace=&quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;width=&quot;390&quot; height=&quot;38&quot;&gt;<br><br>&lt;/div&gt;<br><br>&lt;Div id=my4Div&gt;<br><br>&lt;img src=&quot;images/tabs_down_yellow.jpg&quot;&nbsp;&nbsp;border=&quot;0&quot; hspace=&quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;width=&quot;255&quot; height=&quot;38&quot;&gt;<br><br>&lt;/div&gt;<br><br><br><br>&lt;Div id=my5Div&gt;<br> &lt;form action=&quot;carmaincss.asp?dir=s&bar=1&tabs=&lt;%=session(&quot;tabs&quot;)%&gt;&quot; method=&quot;POST&quot; name=&quot;frmcity&quot;&gt;<br><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;font face=&quot;arial (hebrew)&quot;&gt;&lt;select<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name=&quot;txtfirmcode&quot; size=&quot;1&quot; onchange=&quot;submit()&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;align=&quot;right&quot; size=&quot;2&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;option selected value=&quot;100&quot;&gt;áçø ñåâ øëá çãù&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;option value=&quot;100&quot;&gt;äöâ àú ëì ñåâé äøëáéí&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;option value=&quot;8&quot;&gt;á.î.åå&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;option value=&quot;10&quot;&gt;äåðãä&lt;/option&gt;<br> &lt;option value=&quot;1&quot;&gt;ååìåå&lt;/option&gt;<br> &lt;option value=&quot;11&quot;&gt;èåéåèä&lt;/option&gt;<br> &lt;option value=&quot;5&quot;&gt;éåðãàé&lt;/option&gt;<br> &lt;option value=&quot;9&quot;&gt;îàæãä&lt;/option&gt;<br>&nbsp;&nbsp; &lt;option value=&quot;4&quot;&gt;îéöåáéùé&lt;/option&gt;<br> &lt;option value=&quot;2&quot;&gt;îøöãñ&lt;/option&gt;<br> &lt;option value=&quot;3&quot;&gt;ñåáàøå&lt;/option&gt;<br> &lt;option value=&quot;16&quot;&gt;ñåæå÷é&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;option value=&quot;7&quot;&gt;ñéèøåàï&lt;/option&gt;<br> &lt;option value=&quot;14&quot;&gt;ôåì÷ñååâï&lt;/option&gt;<br> &lt;option value=&quot;6&quot;&gt;ôæ'å&lt;/option&gt;<br> &lt;option value=&quot;12&quot;&gt;ôéàè&lt;/option&gt;<br> &lt;option value=&quot;15&quot;&gt;øðå&lt;/option&gt;<br>&nbsp;&nbsp; &lt;option value=&quot;13&quot;&gt;ùáøåìè&lt;/option&gt;<br> <br><br><br> <br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/select&gt;&lt;/font&gt;<br> &lt;/form&gt;<br> &lt;/div&gt;<br>&lt;Div id=my6Div&gt;<br>&lt;form action=&quot;carmaincss.asp?dir=s&bar=1&tabs=&lt;%=session(&quot;tabs&quot;)%&gt;&quot; method=&quot;POST&quot; name=&quot;frmcity&quot;&gt;<br>&lt;font face=&quot;Arial (Hebrew)&quot;color=&quot;red&quot;&gt;<br>&lt;%<br>response.write(&quot;çéôåù øëá&quot;&&quot;&lt;br&gt;&lt;br&gt;&quot;)<br>%&gt;<br>&lt;/font&gt;<br>&lt;font face=&quot;Arial (Hebrew)&quot;&gt;<br>&lt;input type=&quot;text&quot; size=&quot;5&quot; name=&quot;txtcarno&quot;&gt;<br>&nbsp;&nbsp;øëá îñôø<br>&lt;/font&gt;<br>&lt;/form&gt;<br>&lt;/div&gt;<br><br>&lt;Div id=my10Div&gt;<br><br>&lt;!ú÷öéø äøëá!&gt;<br>&lt;center&gt;<br>&lt;table&gt;&lt;tr&gt;<br>&lt;td colspan=&quot;8&quot; rowspan=&quot;1&quot; bgcolor=&quot;#8C8CFF&quot;align=&quot;right&quot;valign=&quot;top&quot;&gt;<br>&lt;font face=&quot;Arial (Hebrew)&quot; size=&quot;3&quot;&gt;<br><br>&lt;%<br>taktzir=(&quot;&lt;font color='black'face='Arial (Hebrew)'&gt;&quot;&rst.fields(&quot;firm_name&quot;)&&quot; &quot;)<br>if rst.fields(&quot;car_type_name&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;&quot;&rst.fields(&quot;car_type_name&quot;)&&quot; &quot;<br><br>if rst.fields(&quot;automatic&quot;)=true then taktzir=taktzir&&quot;àåèåîè&quot;&&quot; &quot;<br>if rst.fields(&quot;km&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot; &quot;&rst.fields(&quot;km&quot;)&&quot; &quot;&&quot;÷éìåîèø&quot;&&quot; &quot;<br><br>if rst.fields(&quot;engine_size&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;ðôç&quot;&&quot; &quot;&rst.fields(&quot;engine_size&quot;)&&quot; &quot;&&quot;ñî&quot;&&quot;''&quot;&&quot;÷&quot;&&quot; &quot;<br>if rst.fields(&quot;color&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;öáò&quot;&&quot; &quot;&rst.fields(&quot;color&quot;)&&quot; &quot;<br><br>if rst.fields(&quot;hand&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;éã&quot;&&quot; &quot;& rst.fields(&quot;hand_name&quot;)&&quot; &quot;&&quot;&quot;&&quot; &quot;<br>if rst.fields(&quot;test&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;,&quot;&&quot;èñè ì&nbsp;&nbsp;&quot;&&quot;&quot;&rst.fields(&quot;test&quot;)&&quot; &quot;&&quot;çåãù&quot;<br>if rst.fields(&quot;price&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir& rst.fields(&quot;price&quot;)&&quot; &quot;&&quot;ù&quot;&&quot;'&quot;&&quot;'&quot;&&quot;ç&quot;<br><br>if rst.fields(&quot;heb_remarks&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot; &quot;&rst.fields(&quot;heb_remarks&quot;)&&quot; &quot;<br><br>response.write(taktzir)<br><br>%&gt;<br>&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;<br>&lt;/div&gt;<br><br>&lt;Div id=my11Div&gt;<br>&lt;% <br> <br> response.write(&quot;&lt;font face='arial (hebrew)'&nbsp;&nbsp;color='black'size='3'&gt;&quot;&&quot;øëá &quot;&&quot; &quot;&session(&quot;param&quot;)&&quot; &quot;&&quot;îúåê &quot;&&quot; &quot;&session(&quot;recordcounter&quot;)&&quot; &quot;&&quot; øëáéí&quot;&&quot; &quot;)<br> 'if request.form(&quot;&quot;)&lt;&gt;&quot;100&quot; Then<br> 'response.write(&quot;á&quot;&rst.fields(&quot;heb_sub_region&quot;))<br> response.write(&quot; &quot;&&quot;á÷èâåøéä æå&quot;&&quot; &quot;)<br> 'End if<br> %&gt;<br><br><br>&lt;/Div&gt;<br><br>&lt;Div id=my12Div&gt;<br>&lt;%<br>response.write(&quot;&lt;font face='arial (hebrew)' color='red' size='2'&gt;&quot;)<br>response.write(&quot;úåñôåú&quot;&&quot;&lt;br&gt;&quot;)<br><br>response.write(&quot;&lt;font face='arial (hebrew)' color='black' size='2'&gt;&quot;)<br>if rst.fields(&quot;poer_weel&quot;)=true then <br> response.write(&quot;äâä ëç&quot;) <br> response.write(&quot;&lt;br&gt;&quot;) <br>End if<br>if rst.fields(&quot;central_lock&quot;)=true then <br> response.write(&quot;ðòéìä îøëæéú&quot;) <br> response.write(&quot;&lt;br&gt;&quot;) <br>End if<br>if rst.fields(&quot;air_bag&quot;)=true then <br> response.write(&quot;ëøéåú àåéø&quot;) <br> response.write(&quot;&lt;br&gt;&quot;) <br>End if<br>if rst.fields(&quot;electric_window&quot;)=true then <br> response.write(&quot;çìåðåú çùîì&quot;) <br> response.write(&quot;&lt;br&gt;&quot;) <br>End if<br>if rst.fields(&quot;abs&quot;)=true then <br> response.write(&quot;ABS&quot;) <br> response.write(&quot;&lt;br&gt;&quot;) <br>End if<br>if rst.fields(&quot;imobilaizer&quot;)=true then <br> response.write(&quot;àéîåáéìééæø&quot;) <br> response.write(&quot;&lt;br&gt;&quot;) <br>End if<br>if rst.fields(&quot;elarm&quot;)=true then <br> response.write(&quot;àæò÷ä&quot;) <br> response.write(&quot;&lt;br&gt;&quot;) <br>End if<br>if rst.fields(&quot;radio&quot;)=true then <br> response.write(&quot;øãéå&quot;) <br> response.write(&quot;&lt;br&gt;&quot;) <br>End if<br>if rst.fields(&quot;electric_miror&quot;)=true then <br> response.write(&quot;îøàåú çùîì&quot;) <br> response.write(&quot;&lt;br&gt;&quot;) <br>End if<br>if rst.fields(&quot;jant_aluminium&quot;)=true then <br> response.write(&quot;âìâìé îâðæéåí&quot;) <br> response.write(&quot;&lt;br&gt;&quot;) <br>End if<br><br><br>%&gt;<br><br>&lt;/div&gt;<br>&lt;div id=&quot;listDiv&quot;&gt;<br>&lt;%<br>'***************************<br>'for same results<br>&nbsp;'÷áéòú îùúðéí ìîöéàú äðúåðéí--------------------------<br>'*****ëøèñú îëéøä/äùëøä<br>str_city=&quot;select * from Heb_Prop where car_No&gt;0 &quot;<br><br>'0***îñôø ðëñ<br>'if session(&quot;carno&quot;)&lt;&gt;&quot;#&quot; and session(&quot;carno&quot;)&lt;&gt;&quot;&quot; then<br>' str_city=str_city & &quot; and Car_No=&quot; & session(&quot;carno&quot;) <br>'end if<br>'2***òéø àå éùåá<br>if session(&quot;firm_code&quot;)&lt;&gt;&quot;100&quot; and session(&quot;firm_code&quot;)&lt;&gt;&quot;&quot; then<br> str_city=str_city & &quot; and firm_code =&quot; & session(&quot;firm_code&quot;) <br>end if<br>'3***ùëåðä<br>if session(&quot;car_type_name&quot;)&lt;&gt;&quot;---&quot; and session(&quot;car_type_name&quot;)&lt;&gt;&quot;&quot; then<br> str_city=str_city & &quot; and car_type_name_code=&quot; & session(&quot;car_type_name&quot;)&nbsp;&nbsp;<br>end if&nbsp;&nbsp;<br>'4***îçéø äúçìúé<br>if session(&quot;price&quot;)&lt;&gt;&quot;&quot; then<br> str_city=str_city & &quot; and price&gt;=&quot; & session(&quot;price&quot;)&nbsp;&nbsp;<br>end if<br>'5***òã îçéø<br>if session(&quot;pricelimit&quot;)&lt;&gt;&quot;&quot; then<br> str_city=str_city & &quot; and price&lt;=&quot; & session(&quot;pricelimit&quot;)&nbsp;&nbsp;<br>end if<br>'6***îîñôø çãøéí<br>if session(&quot;year&quot;) &lt;&gt;&quot;---&quot; and session(&quot;year&quot;) &lt;&gt;&quot;&quot; then<br> str_city=str_city & &quot; and year &gt;= &quot; & session(&quot;year&quot;)<br>end if<br>'7***òã îñôø çãøéí<br>if session(&quot;yearlimit&quot;) &lt;&gt;&quot;---&quot; and session(&quot;yearlimit&quot;) &lt;&gt;&quot;&quot; then<br> str_city=str_city & &quot; and year &lt;= &quot; & session(&quot;yearlimit&quot;)<br>end if<br>'9***î÷åîä<br>if session(&quot;km&quot;) &lt;&gt;&quot;---&quot; and session(&quot;km&quot;) &lt;&gt;&quot;&quot; then<br> str_city=str_city & &quot; and km_Number &gt;= &quot; & session(&quot;km&quot;)<br>end if<br>'10***òã ÷åîä<br>if session(&quot;kmlimit&quot;) &lt;&gt;&quot;---&quot; and session(&quot;kmlimit&quot;) &lt;&gt;&quot;&quot; then<br> str_city=str_city & &quot; and km_Number &lt;= &quot; & session(&quot;kmlimit&quot;)<br>end if<br>'11***îòìéú<br>if session(&quot;Automatic&quot;) &lt;&gt;&quot;&quot; then<br> str_city=str_city & &quot; and Automatic = &quot; & session(&quot;Automatic&quot;)<br>end if<br>'12***îæâï<br>if session(&quot;cooler&quot;) &lt;&gt;&quot;&quot; then<br> str_city=str_city & &quot; and Air_condition = &quot; & session(&quot;cooler&quot;)<br>end if<br>'13***çðéä<br>if session(&quot;test_month&quot;) &lt;&gt;&quot;&quot; then<br> str_city=str_city & &quot; and test_month = &quot; & session(&quot;test_month&quot;)<br>end if<br>Set rs_city = cnt.Execute(str_city)<br><br><br><br>%&gt;<br>&lt;form action=&quot;carmaincss.asp?rad=m&dir=s&bar=1&tabs=&lt;%=session(&quot;tabs&quot;)%&gt;&quot;method=&quot;POST&quot;name=&quot;frmlist&quot;&gt;<br>&lt;font face=&quot;arial (hebrew)&quot;size=&quot;2&quot;color=&quot;red&quot;&gt;<br>&lt;select name=&quot;txtcarno&quot; size=&quot;1&quot; onchange=&quot;submit()&quot;color=&quot;red&quot;&nbsp;&nbsp;&gt;<br>&lt;font face=&quot;arial (hebrew)&quot;size=&quot;2&quot;color=&quot;red&quot;&gt;<br>&lt;option selected value=&quot;&quot;&gt; øëáéí ðåñôéí á÷èâåøéä æå &lt;/option&gt;<br>&lt;% <br>taktzir=(&quot;&lt;font color='blue'face='Arial (Hebrew)'&gt;&quot;&rs_city.fields(&quot;firm_name&quot;)&&quot; &quot;)<br>if rs_city.fields(&quot;car_type_name&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;&quot;&rs_city.fields(&quot;car_type_name&quot;)&&quot; &quot;<br><br>if rs_city.fields(&quot;automatic&quot;)=true then taktzir=taktzir&&quot;àåèåîè&quot;&&quot; &quot;<br>if rs_city.fields(&quot;km&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot; &quot;&rs_city.fields(&quot;km&quot;)&&quot; &quot;&&quot;÷éìåîèø&quot;&&quot; &quot;<br><br>if rs_city.fields(&quot;engine_size&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;ðôç&quot;&&quot; &quot;&rs_city.fields(&quot;engine_size&quot;)&&quot; &quot;&&quot;ñî&quot;&&quot;''&quot;&&quot;÷&quot;&&quot; &quot;<br>if rs_city.fields(&quot;color&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;öáò&quot;&&quot; &quot;&rs_city.fields(&quot;color&quot;)&&quot; &quot;<br><br>if rs_city.fields(&quot;hand&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;éã&quot;&&quot; &quot;& rs_city.fields(&quot;hand_name&quot;)&&quot; &quot;&&quot;&quot;&&quot; &quot;<br>if rs_city.fields(&quot;test&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;,&quot;&&quot;èñè ì&nbsp;&nbsp;&quot;&&quot;&quot;&rs_city.fields(&quot;test&quot;)&&quot; &quot;&&quot;çåãù&quot;<br>if rs_city.fields(&quot;price&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir& rs_city.fields(&quot;price&quot;)&&quot; &quot;&&quot;ù&quot;&&quot;'&quot;&&quot;'&quot;&&quot;ç&quot;<br><br>'if rs_city.fields(&quot;heb_remarks&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot; &quot;&rs_city.fields(&quot;heb_remarks&quot;)&&quot; &quot;<br><br><br><br>Do While ii&lt;50 and rs_city.EOF=false %&gt;&nbsp;&nbsp;<br>&lt;option value=&quot;<br>&lt;% = rs_city(&quot;car_no&quot;) %&gt;<br>&quot;&gt;<br>&lt;% = taktzir %&gt;<br>&lt;/option&gt;<br><br>&lt;% <br>ii=ii+1<br><br>rs_city.movenext <br>taktzir=(&quot;&lt;font color='blue'face='Arial (Hebrew)'&gt;&quot;&rs_city.fields(&quot;firm_name&quot;)&&quot; &quot;)<br>if rs_city.fields(&quot;car_type_name&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;&quot;&rs_city.fields(&quot;car_type_name&quot;)&&quot; &quot;<br><br>if rs_city.fields(&quot;automatic&quot;)=true then taktzir=taktzir&&quot;àåèåîè&quot;&&quot; &quot;<br>if rs_city.fields(&quot;km&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot; &quot;&rs_city.fields(&quot;km&quot;)&&quot; &quot;&&quot;÷éìåîèø&quot;&&quot; &quot;<br><br>if rs_city.fields(&quot;engine_size&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;ðôç&quot;&&quot; &quot;&rs_city.fields(&quot;engine_size&quot;)&&quot; &quot;&&quot;ñî&quot;&&quot;''&quot;&&quot;÷&quot;&&quot; &quot;<br>if rs_city.fields(&quot;color&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;öáò&quot;&&quot; &quot;&rs_city.fields(&quot;color&quot;)&&quot; &quot;<br><br>if rs_city.fields(&quot;hand&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;éã&quot;&&quot; &quot;& rs_city.fields(&quot;hand_name&quot;)&&quot; &quot;&&quot;&quot;&&quot; &quot;<br>if rs_city.fields(&quot;test&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot;,&quot;&&quot;èñè ì&nbsp;&nbsp;&quot;&&quot;&quot;&rs_city.fields(&quot;test&quot;)&&quot; &quot;&&quot;çåãù&quot;<br>if rs_city.fields(&quot;price&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir& rs_city.fields(&quot;price&quot;)&&quot; &quot;&&quot;ù&quot;&&quot;'&quot;&&quot;'&quot;&&quot;ç&quot;<br><br>'if rs_city.fields(&quot;heb_remarks&quot;)&lt;&gt;&quot;&quot; then taktzir=taktzir&&quot; &quot;&rs_city.fields(&quot;heb_remarks&quot;)&&quot; &quot;<br><br>response.write(taktzir)<br>%&gt;<br><br><br>&lt;% loop %&gt;<br>&lt;/select&gt;&lt;br&gt;<br>&lt;/form&gt;<br>&lt;/div&gt;&lt;! div list !&gt;<br>&lt;Div id=mytvDiv&gt;<br> &lt;table dir=&quot;ltr&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;<br>&nbsp;width=&quot;30%&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;&lt;img src=&quot;../images/picmedia1.jpg&quot; align=&quot;right&quot; border=&quot;0&quot; hspace=&quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;width=&quot;30&quot; height=&quot;80&quot;&gt;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;td &gt;<br><br><br>&lt;MAP NAME=&quot;picmedia2map&quot;&gt;<br>&lt;AREA SHAPE=&quot;RECT&quot; COORDS=&quot;23, 39, 124, 56&quot; HREF=&quot;carmaincss.asp?Dir=&lt;&bar=1&quot;&gt;<br>&lt;AREA SHAPE=&quot;RECT&quot; COORDS=&quot;159, 40, 260, 56&quot; HREF=&quot;carmaincss.asp?Dir=&gt;&bar=1&quot;&gt;<br>&lt;/MAP&gt;&lt;img src=&quot;../images/picmedia2.gif&quot; border=&quot;0&quot; width=&quot;295&quot; height=&quot;80&quot;hspace=&quot;0&quot; usemap=&quot;#picmedia2map&quot;&gt;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp;<br>&lt;td&gt;&lt;A NAME =&quot;pictures&quot;&gt;&lt;img src=&quot;../images/picmedia3.jpg&quot; align=&quot;left&quot; border=&quot;0&quot; hspace=&quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;width=&quot;30&quot; height=&quot;80&quot;&gt;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;../images/picmedia4.jpg&quot; align=&quot;right&quot; border=&quot;0&quot; hspace=&quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;width=&quot;30&quot; height=&quot;210&quot;&gt;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;td align=&quot;center&quot; valign=&quot;top&quot; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bgcolor=&quot;#000000&quot; bordercolor=&quot;#808080&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bordercolordark=&quot;#808080&quot; bordercolorlight=&quot;#808080&quot;&gt;<br><br><br>&lt;font face=&quot;Arial (Hebrew)&quot;color=&quot;black&quot;&gt;carUC Presents &lt;/font&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&nbsp;&nbsp;valign=&quot;top&quot; align=&quot;left&quot; bgcolor=&quot;#FFFFFF&quot; &gt;<br>&lt;img src=&quot;../images/picmedia6.jpg&quot; width=&quot;30&quot; height=&quot;210&quot;&gt;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;../images/picmedia7.jpg&quot; align=&quot;right&quot; border=&quot;0&quot; hspace=&quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;width=&quot;30&quot; height=&quot;50&quot;&gt;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign=&quot;top&quot;&gt;&lt;MAP NAME=&quot;picmedia8&quot;&gt;<br>&lt;AREA SHAPE=&quot;RECT&quot; COORDS=&quot;22, 27, 96, 39&quot; HREF=&quot;javascript:vid()&quot;&gt;<br>&lt;AREA SHAPE=&quot;RECT&quot; COORDS=&quot;113, 18, 138, 40&quot; HREF=&quot;javascript:stopanima()&quot;&gt;<br>&lt;AREA SHAPE=&quot;RECT&quot; COORDS=&quot;153, 18, 178, 40&quot; HREF=&quot;javascript:fwdanima()&quot;&gt;<br>&lt;AREA SHAPE=&quot;RECT&quot; COORDS=&quot;194, 27, 267, 40&quot; HREF=&quot;javascript:anima()&quot;&gt;&lt;/MAP&gt;<br>&lt;img src=&quot;../images/picmedia8.gif&quot; border=&quot;0&quot;&nbsp;&nbsp;width=&quot;295&quot; height=&quot;50&quot; usemap=&quot;#picmedia8&quot;&gt;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign=&quot;top&quot;&gt;&lt;img src=&quot;../images/picmedia9.jpg&quot; align=&quot;left&quot; border=&quot;0&quot; hspace=&quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;width=&quot;30&quot; height=&quot;50&quot;&gt;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br>&lt;/table&gt;<br><br> &lt;/div&gt;<br><br>&lt;Div id=myanimationDiv&gt;<br><br>&lt;script language=&quot;javascript&quot; &gt;<br>animation();<br>&lt;/script&gt;<br>&lt;/div&gt;<br>&lt;div id=mybannerDiv&gt;<br>&lt;!BANNERS!&gt;<br>&lt;% categorie_banner = &quot;carmainpage&quot; %&gt;<br>&lt;!--#include virtual=&quot;/_private/banner.inc&quot;--&gt; <br>&lt;/div&gt;<br><br>&lt;Div id=allrightsDiv&gt;<br>&lt;font FACE=&quot;Arial&quot;color=&quot;black&quot;&gt;<br>© Copyright 1999-2000,carUC Ltd. All rights reserved.&lt;/font&gt;&lt;/font&gt;&lt;small&gt;&lt;small&gt;&lt;small&gt;&lt;small&gt; &lt;/small&gt;&lt;/small&gt;&lt;/small&gt;&lt;/small&gt;&lt;/font&gt;<br><br>&lt;/Div&gt;<br><br>&lt;Div id=forsaleDiv&gt;<br>&lt;img src=&quot;images/forsale.gif&quot; align=&quot;left&quot; border=&quot;0&quot; hspace=&quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;width=&quot;173&quot; height=&quot;71&quot;&gt;<br><br>&lt;/Div&gt;<br><br>&lt;div id=&quot;helpDiv&quot;&gt;<br>&lt;font face=&quot;Arial (Hebrew)&quot;color=&quot;white&quot; size=&quot;2&quot;&gt;<br>ìôøñåí øëá çééâ<br>&lt;br&gt;<br>ú&quot;à çîéùä îéìéåï<br>&lt;br&gt;<br>&nbsp;03-5-000-000<br>&lt;/div&gt;<br><br>&lt;div id=&quot;mediaplayerDiv&quot;&gt;<br>&lt;A HREF=&quot;<A HREF=" TARGET="_new"> Player<br>&lt;br&gt;<br>àí àéðê øåàä åéãàå<br>&lt;/A&gt;<br>&lt;/div&gt;<br><br>&lt;div id=&quot;carucaddressDiv&quot;&gt;<br>&lt;font face=&quot;Arial (Hebrew)&quot;color=&quot;white&quot; size=&quot;2&quot;&gt;<br>îçôù ì÷ðåú áéú<br>&lt;br&gt;<br>&lt;a href=&quot;<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>%&gt;<br>&lt;/body&gt;<br>&lt;/html&gt;
 
I'm sorry, I can't look through an entire page's worth of code and spot a problem- I just don't have the time, I'm sorry. If you could post a few lines which are generating a problem or (at the very least) tell me what to look for... <p>Liam Morley<br><a href=mailto:lmorley@wpi.edu>lmorley@wpi.edu</a><br><a href=] :: imotic :: website :: [</a><br>"light the deep, and bring silence to the world.<br>
light the world, and bring depth to the silence.
 
well just read the Topic (Layers) are you actually using Layers or Divs?<br><br>you can grab one of the HTTP requests, to see what kind of browser it is, and slightly modify for either IE or NN, its more of a HTML problem than an ASP , so stick with the problem , show just the layer section.d <p>Karl<br><a href=mailto:kb244@kb244.8m.com>kb244@kb244.8m.com</a><br><a href= </a><br>Experienced in : C++(both VC++ and Borland),VB1(dos) thru VB6, Delphi 3 pro, HTML, Visual InterDev 6(ASP(WebProgramming/Vbscript)<br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top