show pictures in IE correctly but in firefox browser picture is'n shown | Member | | Join Date: Jan 2009
Posts: 52
| |
hi
would you please help me
i have a online shopping center that i show pictures of the my product in home page.
in the InterExplorer pictures is shown correctly but in Firefox browser is shown properties alt in img tag istead of picture .
place of the pictures is saved in the database(my database is with mysql)
and in home page i fetch properties of the product and address of place that pictures is located
output of the code in the browser is as follow -
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'><html>
-
<head>
-
<title>فروشگاه الکترونیکی موبایل 110</title>
-
<script language="JavaScript" type="text/JavaScript">
-
<!--
-
<!--
-
function MM_reloadPage(init) { //reloads the window if Nav4 resized
-
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
-
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
-
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
-
}
-
MM_reloadPage(true);
-
//-->
-
function hR(sender)
-
{
-
sender.style.backgroundColor ="#006699";
-
}
-
function oR(sender)
-
{
-
sender.style.backgroundColor = "";
-
}
-
-
function MM_findObj(n, d) { //v4.01
-
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
-
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
-
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
-
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
-
if(!x && d.getElementById) x=d.getElementById(n); return x;
-
}
-
-
function MM_showHideLayers() { //v6.0
-
var i,p,v,obj,args=MM_showHideLayers.arguments;
-
for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
-
if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
-
obj.visibility=v; }
-
}
-
-
-
var firstTime=true;
-
var ar_img=new Array("../images/p1.gif","../images/p2.gif","../images/p3.gif","../images/p4.gif","../images/p5.gif","../images/p6.gif","../images/p7.gif","../images/p8.gif");
-
var pos=0;
-
-
if(document.getElementById)//broswer is IE5 , Netscape 6 and later
-
{
-
stdBrowser=true;
-
}
-
else
-
{
-
stdBrowser=false;
-
}
-
function moveIt()
-
{
-
++pos;
-
if(pos==ar_img.length)
-
{
-
pos=0;
-
}
-
else if(pos<0)
-
{
-
pos=ar_img.length-1;
-
}
-
-
if(firstTime)
-
{
-
if(stdBrowser)//for Netscape6 and IE5 and later document.getElementById is known and value of top and left is not number
-
{
-
moverObj=document.getElementById('mover').style;
-
moverObj.top="5px"; //for Netscape6 and IE5 and later value of top and left is not number
-
moverObj.left="5px";
-
}
-
if(document.all)//for IE
-
{
-
maxHeight=document.body.clientHeight-40;
-
maxWidth=document.body.clientWidth-40;
-
}
-
else//for Netscape
-
{
-
maxHeight=window.innerHeight-40;
-
maxWidth=window.innerWidth-40;
-
}
-
firstTime=false;
-
}
-
-
if(stdBrowser)
-
{
-
topPos=parseInt(moverObj.top);//for Netscape6 and IE5 and later value of top and left is not number
-
leftPos=parseInt(moverObj.left);
-
}
-
else
-
{
-
topPos=document.mover.top;
-
leftPos=document.mover.left;
-
}
-
-
chgYby=Math.floor(Math.random()*10);
-
-
if((halfChance() || topPos>=maxHeight) && topPos>5)
-
{
-
topPos-=chgYby;
-
}
-
else
-
{
-
topPos+=chgYby;
-
}
-
-
chgXby=Math.floor(Math.random()*10);
-
if((halfChance() || leftPos>=maxWidth) && leftPos>5)
-
{
-
leftPos-=chgXby;
-
}
-
else
-
{
-
leftPos+=chgXby;
-
}
-
if(stdBrowser)
-
{
-
if(topPos%10!=0)
-
{
-
moverObj.top=topPos+"px";//for Netscape6 and IE5 and later value of top and left is not number
-
moverObj.left=leftPos+"px";
-
}
-
}
-
else
-
{
-
if(topPos%10!=0)
-
{
-
document.mover.top=topPos;
-
document.mover.left=leftPos;
-
}
-
}
-
document.picture.src=ar_img[pos];
-
setTimeout("moveIt()",40);
-
}
-
-
function halfChance()
-
{
-
if(Math.random()<.5)
-
{
-
return true;
-
}
-
return false;
-
}
-
-
-
function decreaseUser(dataSource)
-
{
-
var XMLHttpRequestObject = false;
-
if(window.XMLHttpRequest)
-
{
-
XMLHttpRequestObject = new XMLHttpRequest();
-
}
-
else if (window.ActiveXObject)
-
{
-
XMLHttpRequestObject = new ActiveXObject("Microsoft.XMLHTTP");
-
}
-
-
if(XMLHttpRequestObject)
-
{
-
XMLHttpRequestObject.open("GET", dataSource);
-
XMLHttpRequestObject.onreadystatechange = function()
-
{
-
if (XMLHttpRequestObject.readyState == 4 && (XMLHttpRequestObject.status == 200 || XMLHttpRequestObject.status == 0))
-
{
-
var out=XMLHttpRequestObject.responseText;
-
alert(out);
-
}
-
}
-
-
XMLHttpRequestObject.send(null);
-
}
-
}
-
-
//-->
-
</script>
-
<style>
-
#mover {position: absolute; left:5px; top:5px; z-index:100;}
-
a.a1 {text-decoration:none; color:#FFFFFF; font-size:13; font-weight:bold;}
-
TD.DSB {
-
BORDER: #e6e2d8 1px solid;
-
PADDING-RIGHT: 5px;
-
PADDING-LEFT: 5px;
-
FONT-SIZE: 8pt;
-
VERTICAL-ALIGN: top;
-
BACKGROUND-COLOR: #f7f6f1;
-
height:12px;
-
}
-
TD.DSA {
-
border: #e6e2d8 1px solid;
-
PADDING-LEFT: 5px;
-
VERTICAL-ALIGN: top;
-
BACKGROUND-COLOR:#F2F8FF;
-
FONT-SIZE: 10pt;
-
-
PADDING-RIGHT: 5px;
-
height:12px;
-
}
-
td.td1 {
-
BORDER-RIGHT: #333333 1px solid;
-
BORDER-LEFT: #333333 1px solid;
-
BORDER-BOTTOM: #333333 0px solid;
-
BORDER-TOP:#333333 0px solid;
-
PADDING-LEFT: 5px;
-
VERTICAL-ALIGN: top;
-
PADDING-RIGHT: 5px;
-
}
-
td.td21 {font-size:12px; color:#003366; border:#E9F0FE 1px groove; }
-
td.td22 {font-size:12px; color:#003366; }
-
a.LS {text-decoration:none; color:#006699; }
-
a.a_header:hover {text-decoration:none; color:#FFFFFF; font-size:14px; font-weight:bold; background-color:#006699; }
-
a.a_header:visited {text-decoration:none; color:#F2F9FF; font-size:14px; }
-
a.a_header:link {text-decoration:none; color:#FFFFFF; font-size:14px; font-weight:500; }
-
.style5 {font-size:16px; color:#CCCCCC; font-weight:bold; }
-
a.a2:link {color:#003366; font-size:12px; text-decoration:underline;}
-
a.a2:hover {color:#FF0000; font-size:13px; text-decoration:none; font-weight:bold; }
-
a.a2:visited {color:#006699; font-size:13px; text-decoration:none;}
-
.right12gray {color:#666666; text-align:right; font-size:12px; font-weight:400; }
-
a.a_mark:link, a.a_mark:visited, a.a_mark:active {
-
font-size:14px; text-decoration:none; color:#FFFFFF; font-weight:bold;
-
}
-
a.a_mark:hover {font-size:14px; text-decoration:none; color:#DDDDDD; font-weight:bold; }
-
-
body
-
{
-
scrollbar-face-color:#FFFFFF;
-
scrollbar-highlight-color: #3399CC;
-
scrollbar-shodow-color: #3399CC;
-
scrollbar-arrow-color: #006699;
-
SCROLLBAR-BASE-COLOR: #005500;
-
scrollbar-3d-light-color: #faddf0;
-
}
-
</style>
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-
</head>
-
<!-- The structure of this file is exactly the same as 2col_leftNav.html;
-
the only difference between the two is the stylesheet they use -->
-
<body dir="rtl" background="../images/BK21.GIF" onLoad="moveIt()" onUnload="decreaseUser('logOffUser.php')">
-
<!--lyrBtnBasketBuy-->
-
<basefont color="#003366" size="2">
-
<script language="javascript">
-
a=screen.width;
-
a=a-800;
-
if(a>0)
-
{
-
if(a%2==1)
-
{
-
a=(a-1)/2;
-
}
-
else
-
{
-
a=a/2
-
}
-
}
-
else
-
{
-
a=0;
-
}
-
/////////////////////////////////////////////////////////////////////////////////////////////////////
-
document.write('<div id="mover">'); ///////
-
document.write('<img src="http://bytes.com/submit/images/p1.gif" width="25" height="25" alt="" name="picture" />');//////
-
document.write('</div>'); //////
-
/////////////////////////////////////////////////////////////////////////////////////////////////////
-
-
document.write('<div id="lyrBody" style="position:absolute; left:'+a+'px; top:4px; width:800px; height:688px; z-index:1;">');
-
</script>
-
-
<!--lyrFavoriteColor-->
-
<table width="800" height="890" border="1" bordercolor="#999999">
-
<!--tableBase-->
-
<tr>
-
<td height="143" colspan="2"> <div id="lyrHead" style="position:absolute; left:0px; top:0px; width:800px; height:230px; z-index:2; overflow: hidden;">
-
<div id="lyrBackHead" style="position:absolute; left:0px; top:0px; width:800px; height:182px; z-index:3">
-
<!--lyrLogin-->
-
<div id="lyrTitleShop" style="position:absolute; left:495px; top:42px; width:235px; height:31px; z-index:2; color: #FFFFFF; font-weight: bold; font-size: 20px; font-family: Arial, Helvetica, sans-serif;">
-
فروشگاه الکترونیکی موبایل 110</div><!--lyrTitleShop-->
-
<div id="lyrLogo" style="position:absolute; left:723px; top:39px; width:39px; height:34px; z-index:3"><img src="http://bytes.com/submit/images/planeta%5B1%5D.gif" width="29" height="29"></div>
-
<img src="http://bytes.com/submit/images/6.gif" width="800" height="130">
-
-
<!--lytBasketBuy-->
-
</div>
-
<!--lyrBackHead-->
-
<div id="lyrPhotoHead" style="position:absolute; left:-32px; top:1px; width:182px; height:185px; z-index:6">
-
<img src="http://bytes.com/submit/images/4.gif" width="183" height="176">
-
</div><!--lyrPhotoHead-->
-
<div id="lyrUser" style="position:absolute; left:0px; top:151px; width:800px; height:26px; z-index:3">
-
<img src="http://bytes.com/submit/images/38.gif" width="800" height="25">
-
<div id="lyrNameCurrentDay" style="position:absolute; left:665px; top:3px; width:123px; height:20px; z-index:6">
-
<div class='right12gray'>دو شنبه</div> </div><!--lyrNameCurrentDay-->
-
-
<div id="lyrCurrentDate" style="position:absolute; left:607px; top:3px; width:139px; height:20px; z-index:6">
-
<font color='#666666' size='2'>1388/6/16</font></div><!--lyrCurrentDate-->
-
-
<div id="lyrGhamari" style="position:absolute; left:540px; top:3px; width:143px; height:20px; z-index:6">
-
<div id="lyrDayGhamari" style="position:absolute; left:122px; top:0px; width:14px; height:20px; z-index:7">
-
<div class='right12gray'>17</div> </div><!--lyrDayGhamari-->
-
<div id="lyrMonthGhamari" style="position:absolute; left:75px; top:0px; width:44px; height:20px; z-index:7">
-
<div class='right12gray'>رمضان</div> </div><!--lyrMonthGhamari-->
-
<div id="lyrYearGhamari" style="position:absolute; left:51px; top:0px; width:20px; height:20px; z-index:7">
-
<div class='right12gray'>1430</div> </div><!--lyrYearGhamari--->
-
</div><!--lyrGhamari-->
-
-
<div id="lyrMiladi" style="position:absolute; left:450px; top:3px; width:131px; height:20px; z-index:6">
-
<div id="lyrMiladiDay" style="position:absolute; left:110px; top:0px; width:15px; height:20px; z-index:7">
-
<div class='right12gray'>7</div> </div><!--lyrMiladiDay-->
-
<div id="lyrMiladiMonth" style="position:absolute; left:80px; top:0px; width:28px; height:20px; z-index:7">
-
<div class='right12gray'>Sep</div> </div><!--lyrMiladiMonth-->
-
<div id="lyrMiladiYear" style="position:absolute; left:55px; top:0px; width:29px; height:20px; z-index:7">
-
<div class='right12gray'>2009</div> </div><!--lyrMiladiYear-->
-
</div><!--lyrMiladi-->
-
-
<div id="lyrCounterVisit" style="position:absolute; left:148px; top:3px; width:162px; height:20px; z-index:5">
-
<div class='right12gray'> تعداد باز دید کنندگان امروز: 3</div> </div><!--lyrCounterVisit-->
-
-
</div> <!--lyrUser-->
-
<div id="lyrMenu" style="position:absolute; left:0px; top:130px; width:800px; height:30px; z-index:3">
-
<!--lyrM1-->
-
<div id="lyrM10" style="position:absolute; left:111px; top:0px; width:90px; height:22px; z-index:4">
-
<div id="lyrCantactUsOn" style="position:absolute; left:20px; top:3px; width:58px; height:15px; z-index:1; visibility: visible;">
-
<a href="contact_with_us.php" class="a1" onMouseOver="MM_showHideLayers('lyrM10','','hide')" onMouseOut="MM_showHideLayers('lyrM10','','show')">ارتباط با ما </a></div>
-
<div align="center"><img src="http://bytes.com/submit/images/52r.gif" width="4" height="20"><img src="http://bytes.com/submit/images/52.gif" width="70" height="20"><img src="http://bytes.com/submit/images/52l.gif" width="4" height="20"></div>
-
</div>
-
<div id="lyrM7" style="position:absolute; left:311px; top:0px; width:76px; height:22px; z-index:4">
-
<div id="lyrBuyPhoneOn" style="position:absolute; left:11px; top:3px; width:50px; height:18px; z-index:1; visibility: visible;">
-
<a href="shoping_via_phone.php" class="a1" onMouseOver="MM_showHideLayers('lyrM7','','hide')" onMouseOut="MM_showHideLayers('lyrM7','','show')">خرید تلفنی</a></div>
-
<div align="center"><img src="http://bytes.com/submit/images/52r.gif" width="4" height="20"><img src="http://bytes.com/submit/images/52.gif" width="60" height="20"><img src="http://bytes.com/submit/images/52l.gif" width="4" height="20"></div>
-
</div>
-
<div id="lyrM6" style="position:absolute; left:377px; top:0px; width:90px; height:22px; z-index:4">
-
<div id="lyrThriftOn" style="position:absolute; left:14px; top:3px; width:62px; height:15px; z-index:1; visibility: visible;">
-
<a href="show_second_hand.php" class="a1" onMouseOver="MM_showHideLayers('lyrM6','','hide')" onMouseOut="MM_showHideLayers('lyrM6','','show')">دست دومی ها </a></div>
-
<div align="center"><img src="http://bytes.com/submit/images/52r.gif" width="4" height="20"><img src="http://bytes.com/submit/images/52.gif" width="70" height="20"><img src="http://bytes.com/submit/images/52l.gif" width="4" height="20"></div>
-
</div>
-
<div id="lyrM3" style="position:absolute; left:590px; top:0px; width:71px; height:22px; z-index:4">
-
<div id="lyrMembershipOn" style="position:absolute; left:13px; top:3px; width:41px; height:14px; z-index:5; visibility:visible; ">
-
<a href="Register.php" class="a1" onMouseOver="MM_showHideLayers('lyrM3','','hide')" onMouseOut="MM_showHideLayers('lyrM3','','show')">عضویت</a>
-
</div>
-
<!--lyrMembershipOn-->
-
<div align="center"><img src="http://bytes.com/submit/images/52r.gif" width="4" height="20"><img src="http://bytes.com/submit/images/52.gif" width="60" height="20"><img src="http://bytes.com/submit/images/52l.gif" width="4" height="20"></div>
-
</div><!--lyrM3-->
-
<div id="lyrM4" style="position:absolute; left:538px; top:0px; width:56px; height:22px; z-index:4">
-
<div id="lyrNewsOn" style="position:absolute; left:11px; top:3px; width:32px; height:14px; z-index:5; visibility: visible;">
-
<a href="http://bytes.com/submit/included_file/lead_page_news.php" class="a1" onMouseOver="MM_showHideLayers('lyrM4','','hide')" onMouseOut="MM_showHideLayers('lyrM4','','show')">اخبار</a>
-
</div>
-
<!--lyrNewsOn-->
-
<div align="center"><img src="http://bytes.com/submit/images/52r.gif" width="4" height="20"><img src="http://bytes.com/submit/images/52.gif" width="45" height="20"><img src="http://bytes.com/submit/images/52l.gif" width="4" height="20"></div>
-
</div><!--lyrM4-->
-
<div id="lyrM5" style="position:absolute; left:457px; top:0px; width:87px; height:22px; z-index:4">
-
<div id="lyrSuitableSearchOn" style="position:absolute; left:8px; top:3px; width:69px; height:14px; z-index:5; visibility: visible;">
-
<a href="suitable_search.php" class="a1" onMouseOver="MM_showHideLayers('lyrM5','','hide')" onMouseOut="MM_showHideLayers('lyrM5','','show')">جستجوی ممتاز </a></div>
-
<div align="center"><img src="http://bytes.com/submit/images/52r.gif" width="4" height="20"><img src="http://bytes.com/submit/images/52.gif" width="70" height="20"><img src="http://bytes.com/submit/images/52l.gif" width="4" height="20"></div>
-
</div>
-
<div id="lyrM1" style="position:absolute; left:733px; top:0px; width:68px; height:22px; z-index:4">
-
<div id="lyrHomeOn" style="position:absolute; left:9px; top:3px; width:40px; height:14px; z-index:5; visibility: visible;">
-
<div align="center"><a href="index.php" class="a1" onMouseOver="MM_showHideLayers('lyrM1','','hide')" onMouseOut="MM_showHideLayers('lyrM1','','show')">خانه</a></div>
-
</div>
-
<div align="center"><img src="http://bytes.com/submit/images/52r.gif" width="4" height="20"><img src="http://bytes.com/submit/images/52.gif" width="55" height="20"><img src="http://bytes.com/submit/images/52l.gif" width="4" height="20"></div>
-
</div>
-
<div id="lyrM2" style="position:absolute; left:654px; top:0px; width:87px; height:22px; z-index:4">
-
<div id="lyrLoginOn" style="position:absolute; left:8px; top:3px; width:74px; height:14px; z-index:5; visibility: visible;">
-
<div align="center"><a href="login.php" class="a1" onMouseOver="MM_showHideLayers('lyrM2','','hide')" onMouseOut="MM_showHideLayers('lyrM2','','show')">ورود به سایت </a></div>
-
</div>
-
<div align="center"><img src="http://bytes.com/submit/images/52r.gif" width="4" height="20"><img src="http://bytes.com/submit/images/52.gif" width="70" height="20"><img src="http://bytes.com/submit/images/52l.gif" width="4" height="20">
-
</div>
-
</div>
-
-
<div id="lyrM9" style="position:absolute; left:194px; top:0px; width:79px; height:24px; z-index:4">
-
<div id="lyrBuyPhoneOn" style="position:absolute; left:-5px; top:3px; width:79px; height:18px; z-index:1; visibility: visible;"><a href="follow_orders.php" class="a1" onMouseOver="MM_showHideLayers('lyrM9','','hide')" onMouseOut="MM_showHideLayers('lyrM9','','show')">پیگیری خریدها </a></div>
-
<div align="center"><img src="http://bytes.com/submit/images/52r.gif" width="4" height="20"><img src="http://bytes.com/submit/images/52.gif" width="70" height="20"><img src="http://bytes.com/submit/images/52l.gif" width="4" height="20"></div>
-
</div>
-
<div id="lyrM8" style="position:absolute; left:268px; top:0px; width:50px; height:22px; z-index:4">
-
<div id="lyrNewsOn" style="position:absolute; left:11px; top:3px; width:32px; height:15px; z-index:1; visibility: visible;"> <a href="close_site.php" class="a1" onMouseOver="MM_showHideLayers('lyrM8','','hide')" onMouseOut="MM_showHideLayers('lyrM8','','show')">خروج</a></div>
-
<div align="center"><img src="http://bytes.com/submit/images/52r.gif" width="4" height="20"><img src="http://bytes.com/submit/images/52.gif" width="35" height="20"><img src="http://bytes.com/submit/images/52l.gif" width="4" height="20"></div>
-
</div>
-
<!--lyrCurrentDate-->
-
</div><!--lyrMenu-->
-
<div id="lyrSearch" style="position:absolute; left:0px; top:105px; width:800px; height:25px; z-index:3">
-
<div id="lyrCurrentUser" style="position:absolute; left:160px; top:4px; width:152px; height:17px; z-index:5">
-
<font color='#666666' size='2'>کاربر حاضر:میهمان</font> </div>
-
<!--lyrCurrentUser-->
-
<img src="http://bytes.com/submit/images/btn1.gif" width="800" height="25">
-
<!--lyrLogin-->
-
<!--lyrInLogin-->
-
</div>
-
<div id="lyrUnderMenu" style="position:absolute; left:0px; top:125px; width:800px; height:25px; z-index:1; background-color:#FFFFFF; ">
-
<img src="http://bytes.com/submit/images/52after.gif" width="800" height="25">
-
</div>
-
<div id="lyrUser" style="position:absolute; left:0px; top:177px; width:648px; height:24px; z-index:3; " >
-
<img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20">
-
<img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20">
-
<img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20">
-
<img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20">
-
<img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20">
-
<img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20">
-
<img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20">
-
<img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20">
-
<img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20">
-
<img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20"><img src="http://bytes.com/submit/images/2namwy8.gif" width="20" height="20">
-
-
</div>
-
<!--lyrUnderMenu-->
-
</div>
-
<!--lyrHead--> </td>
-
</tr>
-
<tr>
-
<td width="630">
-
<div id="lyrNamePhone" style="position:absolute; left:648px; top:176px; width:150px; height:660px; z-index:4; overflow:hiddetn; ">
-
<div id="lyrAmarSite" style="position:absolute; left:5px; top:540px; width:140px; height:140px; z-index:5; overflow:hidden; ">
-
<table style="table-layout:fixed; border:#3399CC 1px inset;" width="140px" bgcolor="#FFFFFF" rules="none" background="../images/BK21.GIF" >
-
<tr><td colspan="2" align="center"><font size="3" color="#003366"><b>خلاصه آمار سایت</b></font></td></tr>
-
<tr><td class="td22">بازدید امروز:</td><td class="td21">3</td></tr>
-
<tr><td class="td22">بازدید دیروز:</td><td class="td21"></td></tr>
-
<tr><td class="td22">افراد آنلاین:</td><td class="td21">2</td></tr>
-
<tr><td class="td22">بازدید کل:</td><td class="td21">21071</td></tr>
-
<tr><td class="td21" align="center" colspan="2"><a href="amar_site.php" class="a2">« نمایش کل آمار » </a></td></tr>
-
</table>
-
</div><!--lyrAmarSite-->
-
<table border="0" style="table-layout: fixed; width:150px; padding-right:0px; "
-
cellSpacing="1" > <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=nokia&menu_right=1" class="a_mark">نوکیا</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=sony&menu_right=1" class="a_mark">سونی</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=sumsung&menu_right=1" class="a_mark">سامسونگ</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=motorola&menu_right=1" class="a_mark">موتورولا</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=sony ericson&menu_right=1" class="a_mark">سونی اریکسون</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=lg&menu_right=1" class="a_mark">ال جی</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=apple&menu_right=1" class="a_mark">اپل</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=thc&menu_right=1" class="a_mark">تی اچ سی</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=imeet&menu_right=1" class="a_mark">آی میت</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=oto&menu_right=1" class="a_mark">اتو</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=iten&menu_right=1" class="a_mark">ایتن</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=hp&menu_right=1" class="a_mark">اچ پی</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=asus&menu_right=1" class="a_mark">ایسوز</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=giga byte&menu_right=1" class="a_mark">گيگابايت</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=cutak&menu_right=1" class="a_mark">کيوتک</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=palm&menu_right=1" class="a_mark">پالم</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=sajm&menu_right=1" class="a_mark">ساژم</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=alkatel&menu_right=1" class="a_mark">آلكاتل</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=filips&menu_right=1" class="a_mark">فيليپس</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=zimens&menu_right=1" class="a_mark">زيمنس</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=panasonic&menu_right=1" class="a_mark">پاناسونيک</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=pantec&menu_right=1" class="a_mark">پنتک</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=hire&menu_right=1" class="a_mark">هاير</a>
-
-
</td></tr> <tr class="DSB">
-
<td align="center" height='20' bgcolor=#3399CC onMouseOver=hR(this) onmouseout=oR(this)><a href="index.php?borand=tak i&menu_right=1" class="a_mark">آی تک</a>
-
-
</td></tr><script language="JavaScript" type="text/JavaScript">
-
<!--
-
var cur_mos=false;//mouse is out of image for show or hide news from first page that curmos=false meaning mouse out of
-
var state=true;//content of tr is shown while state=true this variable for shide or hide title of news from first page of site
-
function MM_reloadPage(init) { //reloads the window if Nav4 resized
-
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
-
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
-
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
-
}
-
MM_reloadPage(true);
-
function mouse_clk(img_id,tr_id)
-
{
-
state=true ^ state;
-
if(state)
-
{
-
document.getElementById(img_id).src="../images/arrow_top_after.gif";
-
document.getElementById(tr_id).style.display="";
-
-
}
-
else
-
{
-
document.getElementById(img_id).src="../images/arrow_bottom_after.gif";
-
document.getElementById(tr_id).style.display="none";
-
}
-
}
-
function mouse_o(img_id)
-
{
-
cur_mos=cur_mos ^ true;
-
if(state==true)
-
{
-
if(cur_mos==true)
-
{
-
document.getElementById(img_id).src="../images/arrow_top_after.gif";
-
}
-
else
-
{
-
document.getElementById(img_id).src="../images/arrow_top_befor.gif";
-
}
-
}
-
else
-
{
-
if(cur_mos==true)
-
{
-
document.getElementById(img_id).src="../images/arrow_bottom_befor.gif";
-
}
-
else
-
{
-
document.getElementById(img_id).src="../images/arrow_bottom_befor.gif";
-
}
-
}
-
}
-
-
-
-
//-->
-
</script>
-
-
<tr><td height="180" bgcolor="#3399CC"></td></tr>
-
</table>
-
</div> <!--lyrNamePhone-->
-
</td>
-
<td width="154" height="660">
-
<div id="lyrBodyLeft" style="position:absolute; left:0px; top:176px; width:600px; height:660px; z-index:5">
-
<!------------------------------------------------------------------------------------------------------>
-
<div id="lyrNewsHome" style="position:absolute; left:15px; top:33px; width:610px; height:74px; z-index:2">
-
<!--table for show news on homepage-->
-
<table width="610" border="1" align="center" cellspacing="0" bordercolor="#CCCCCC" rules="none" style="padding-top:0px; table-layout:fixed;
-
border-collapse:collapse; " cellpading="0">
-
<tr>
-
<td width="590" background="../images/yahoo.gif" style="background-repeat:repeat-x; "><font color="#003366" size="3">اخبار</font></td>
-
<td width="20" background="../images/yahoo.gif">
-
<img src="http://bytes.com/submit/images/arrow_top_befor.gif" width="15" height="15" id='img_news' onClick="mouse_clk('img_news','tr_news')" onMouseOver="mouse_o('img_news')" onMouseOut="mouse_o('img_news')" border="0">
-
</td>
-
</tr>
-
<tr id='tr_news'><td colspan='2'><font color='#003366' size='2'>گوشي جديد سامسونگ براي كاربران معمولي</font>
-
<a href='./show_alluser_news.php?i=29' style='text-decoration:none; color:#666666; font-size:12px; '> شرح خبر </a></td></tr> </table>
-
<!--table for show news on homepage-->
-
</div>
-
<!--lyrNewsHome-->
-
<div id="lyrShowProduct" style="position:absolute; left:10px; top:94px; width:610px; height:607px; z-index:2">
-
<!--this table include all product in homepage-->
-
<table cellpading="2" align="center" cellspacing="2" border="1"
-
style="padding-top:0px; table-layout:fixed; width:610px; height:516px" rules="none" >
-
<tr><td width="610px" colspan="4" background="../images/header_td2.gif" style="background-repeat:repeat-x " height="25px">
-
<font color="#FFFFFF" size="3"><strong>تازه ها</strong></font></td>
-
</tr>
-
<tr>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=81" class='a1'>موتورولا 1200<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[25].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=81"></a><font size=3 color=#ffffff>2,700,000ریال</font></a></div>
-
</td>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=80" class='a1'>ال جی 1504<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[23].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=80"></a><font size=3 color=#ffffff>2,500,000ریال</font></a></div>
-
</td>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=79" class='a1'>ال جی 1510<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[18].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=79"></a><font size=3 color=#ffffff>2,500,000ریال</font></a></div>
-
</td>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=78" class='a1'>اچ پی 3210<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[21].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=78"></a><font size=3 color=#ffffff>3,100,000ریال</font></a></div>
-
</td>
-
</tr><tr>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=77" class='a1'>اچ پی 2310<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[20].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=77"></a><font size=3 color=#ffffff>2,300,000ریال</font></a></div>
-
</td>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=76" class='a1'>اچ پی 4210<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[19].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=76"></a><font size=3 color=#ffffff>2,100,000ریال</font></a></div>
-
</td>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=74" class='a1'>آی تک 1280<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[16].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=74"></a><font size=3 color=#ffffff>3,200,000ریال</font></a></div>
-
</td>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=73" class='a1'>سامسونگ 2512<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[14].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=73"></a><font size=3 color=#ffffff>2,500,000ریال</font></a></div>
-
</td>
-
</tr><tr>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=72" class='a1'>سامسونگ 5541<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[13].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=72"></a><font size=3 color=#ffffff>1,250,000ریال</font></a></div>
-
</td>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=71" class='a1'>سامسونگ 8884<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[12].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=71"></a><font size=3 color=#ffffff>2,400,000ریال</font></a></div>
-
</td>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=70" class='a1'>سامسونگ 5545<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[11].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=70"></a><font size=3 color=#ffffff>1,700,000ریال</font></a></div>
-
</td>
-
<td width="163" height='172px' onmouseover=hR(this) onmouseout=oR(this) style="border:solid 1px #CCCCCC; "><div align="center"><a href="show_properties.php?aa=69" class='a1'>سامسونگ 5656<br><img src="http://bytes.com/submit/304/..\uploaded_file\pic[10].gif" border="0" width="90" height="120" alt="مشاهده مشخصات کالا"><br><a href=".\order_material.php?id=69"></a><font size=3 color=#ffffff>2,700,000ریال</font></a></div>
-
</td>
-
</tr></table> <table dir=ltr align="center" style="MARGIN-TOP: 10px; MARGIN-BOTTOM: 10px">
-
<tr>
-
<td class='DSB'><font color='#b4b4b4'><قبلی</font></td><td class='DSB'><font color='#b4b4b4'>1</font></td><td class='DSA'><a class='LS' href="?page_number=2">2</a></td><td class='DSA'><a class='LS' href="?page_number=3">3</a></td><td class='DSA'><a class='LS' href="?page_number=4">4</a></td><td class='DSA'><a class='LS' href="?page_number=2">بعدی></a></TD></tr>
-
</table><!--table for show number page-->
-
</div><!--lyrShowProduct-->
-
</td> </tr></div><!--lyrBodyLeft-->
-
<!--<div id="lyrFooter" style="position:absolute; left:0px; top:885px; width:800px; height:24px; z-index:6; ">
-
<img src="http://bytes.com/submit/images/38.gif" width="800" height="25">
-
<div id="lyrTextFooter" style="position:absolute; left:0px; top:2px; width:800px; height:16px; z-index:7; font-size: 12px; color: #777777;" align="center">
-
Designed By <a href="mailto:sedigheh.mohseni@yahoo.com" style="text-decoration:none; color:#666666; size:2; ">Sedigheh Mohseni</a> .This application has been developed for 110 mobile shop© .All rights reserved.
-
</div><!--lyrTextFooter-->
-
<tr><td colspan="2" background="../images/38.gif" height="25" style="background-repeat:repeat-x; " align="center">
-
<font color="#777777" size="2">
-
Designed By <a href="mailto:sedigheh.mohseni@yahoo.com" style="text-decoration:none; color:#666666; size:2; ">
-
Sedigheh Mohseni</a> .This application has been developed for 110 mobile shop© .All rights reserved.
-
</td></tr>
-
</table><!--tableBase-->
-
</div><!--lyrBody-->
-
</body>
-
</html>
-
-
-
|  | Expert | | Join Date: Jul 2008 Location: Utrecht, The Netherlands
Posts: 274
| | | re: show pictures in IE correctly but in firefox browser picture is'n shown
Do you seriously expect me to look through 620 lines of code? 8-|
I suggest that you repost the code that is relevant for your question, which by the way is missing in your OP...
Steven
| | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,223 network members.
|