473,396 Members | 1,865 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

please solve this error

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Untitled Document</title>
  6.  
  7. <script 
  8. language="JavaScript"> // Expanding images script copyright Matthew 
  9. LaCerais MLacerais@osc.state.ny.us // Distributed by hypergurl http://www.hypergurl.com 
  10. // Permission to use script granted if above credits are left intact <!-- function 
  11. resizeImage(e) { if (document.layers) { //Netscape var xMousePos = e.pageX; var 
  12. xMousePosMax = window.innerWidth+window.pageXOffset; } else if (document.all) 
  13. { // IE var xMousePos = window.event.x+document.body.scrollLeft; } else if (document.getElementById) 
  14. {//Netscape var xMousePos = e.pageX; var xMousePosMax = window.innerWidth+window.pageXOffset; 
  15. } var i = (-1 * (((xMousePos/340) - (250/340)) * ((xMousePos/340) - (250/340)))) 
  16. + 1; if (i < .4) i = .4; if (i > 2) i = 2; picture1.width=(170 * i); picture1.height=(125 
  17. * i); i = (-1 * (((xMousePos/340) - (420/340)) * ((xMousePos/340) - (420/340)))) 
  18. + 1; if (i < .4) i = .4; if (i > 2) i = 2; picture2.width=(170 * i); picture2.height=(125 
  19. * i); i = (-1 * (((xMousePos/340) - (525/340)) * ((xMousePos/340) - (525/340)))) 
  20. + 1; if (i < .4) i = .4; if (i > 2) i = 2; picture3.width=(170 * i); picture3.height=(125 
  21. * i); i = (-1 * (((xMousePos/340) - (600/340)) * ((xMousePos/340) - (600/340)))) 
  22. + 1; if (i < .4) i = .4; if (i > 2) i = 2; picture4.width=(170 * i); picture4.height=(125 
  23. * i); i = (-1 * (((xMousePos/340) - (680/340)) * ((xMousePos/340) - (680/340)))) 
  24. + 1; if (i < .4) i = .4; if (i > 2) i = 2; picture5.width=(170 * i); picture5.height=(125 
  25. * i); } function output(message) { obj = eval("text"); obj.innerHTML 
  26. = "<font size=\"6\">"+message+"</font>"; 
  27. } function handleMouse() { if (document.layers) { // Netscape document.captureEvents(Event.MOUSEMOVE); 
  28. document.onmousemove = resizeImage; } else if (document.all) { // Internet Explorer 
  29. document.onmousemove = resizeImage; } else if (document.getElementById) { // Netcsape 
  30. 6 document.onmousemove = resizeImage; } } function doNothing(e) { var i = 0.4; 
  31. picture1.width=(170 * i); picture1.height=(125 * i); picture2.width=(170 * i); 
  32. picture2.height=(125 * i); picture3.width=(170 * i); picture3.height=(125 * i); 
  33. picture4.width=(170 * i); picture4.height=(125 * i); picture5.width=(170 * i); 
  34. picture5.height=(125 * i); } function ignoreMouse() { if (document.layers) { // 
  35. Netscape document.captureEvents(Event.MOUSEMOVE); document.onmousemove = doNothing; 
  36. } else if (document.all) { // Internet Explorer document.onmousemove = doNothing; 
  37. } else if (document.getElementById) { // Netcsape 6 document.onmousemove = doNothing; 
  38. } } //--> </script>
  39.  
  40.  
  41. </head>
  42.  
  43. <body>
  44.  
  45. <table 
  46. width="100%" border="0" cellspacing="0" cellpadding="0"> 
  47. <tr> <td colspan="4" onMouseOver="ignoreMouse()"></td> 
  48. </tr> <tr> <td width="8" height="140" valign="bottom" 
  49. onMouseOver="ignoreMouse()"> </td> <td width="142" 
  50. valign="bottom" onMouseOver="handleMouse()"></td> 
  51. <td width="889" valign="bottom" onMouseOver="handleMouse()"><nobr> 
  52. <a href="http://www.hypergurl.com" target="_blank"><img 
  53. name="picture1" src="http://bytes.com/submit/live-art-4/images/image-b1.jpg" width="68" height="50"onMouseOver="output('Palm 
  54. Tree')" onMouseOut='output("")' border="0"></a> 
  55. <a href="http://www.hypergurl.com/hosting.html" target="_blank"><img 
  56. name="picture2" src="http://bytes.com/submit/live-art-4/images/image-b2.jpg" width="68" height="50" 
  57. onMouseOver="output('Family')" onMouseOut='output("")' border="0"></a> 
  58. <a href="http://www.hypergurl.com" target="_blank"><img 
  59. name="picture3" src="http://bytes.com/submit/live-art-4/images/image-b3.jpg" width="68" height="50"onMouseOver="output('Family 
  60. 1')" onMouseOut='output("")' border="0"></a> 
  61. <a href="http://www.hypergurl.com" target="_blank"><img 
  62. name="picture4" src="http://bytes.com/submit/live-art-4/images/image-b4.jpg" width="68" height="50"onMouseOver="output('Menu 
  63. Option 4')" onMouseOut='output("")' border="0"></a> 
  64. <a href="http://www.hypergurl.com" target="_blank"><img 
  65. name="picture5" src="http://bytes.com/submit/live-art-4/images/image-b1.jpg" width="68" height="50"onMouseOver="output('Menu 
  66. Option 5')" onMouseOut='output("")' border="0"></a> 
  67. </nobr></td> 
  68. <td width="3" valign="bottom" 
  69. onMouseOver="ignoreMouse()">&nbsp;</td> </tr> <tr> 
  70. <td height="10" colspan="4" onMouseOver="ignoreMouse()"></td> 
  71. </tr> </table>
  72. <div 
  73. id="text" name="text" style="position:absolute; left:166px; 
  74. top:527px; width:665px; height:94px; z-index:1" onMouseOver="ignoreMouse()"></div>
  75.  
  76. </body>
  77. </html>
Apr 11 '10 #1
1 1322
gits
5,390 Expert Mod 4TB
what error occurs?
Apr 15 '10 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

7
by: tyler_durden | last post by:
thanks a lot for all your help..I'm really appreciated... with all the help I've been getting in forums I've been able to continue my program and it's almost done, but I'm having a big problem that...
23
by: Jason | last post by:
Hi, I was wondering if any could point me to an example or give me ideas on how to dynamically create a form based on a database table? So, I would have a table designed to tell my application...
5
by: settyv | last post by:
Hi, Below is the Javascript function that am trying to call from asp:Button control. <script language="javascript"> function ValidateDate(fromDate,toDate) { var fromDate=new Date();
1
by: rocksoft | last post by:
Hi, i got error "class not registered" when i try to create web setup and deployment project to my web application. i'm used Asp.net and c# to my application, i created web setup and deployment...
4
by: namalapavan | last post by:
hii , i am getting and error while installing oracle9i on RHEL AS 4.0 .i am sure that somebody here would be able to solve my problem.kindly reply so that i can send you the detailed error report....
1
by: Sean128 | last post by:
Hi, I hope someone can help me - this seems like it should be a really simple problem but I've been having trouble trying to solve it all week. I have hosted my website on a Linux server in 1...
1
by: Sean128 | last post by:
Hi, I hope someone can help me - this seems like it should be a really simple problem but I've been having trouble trying to solve it all week. I have hosted my website on a Linux server in 1...
2
by: itsvineeth209 | last post by:
My task is to create login control without using login control in tools. I shouldnt use sqldatasource or any other. I should use only data sets, data adapters and data readers etc. U had created...
3
by: souravmoysau | last post by:
Hello I have created a mobile device application using C#.net 2.0.The project is successfully compiled and run using using the simulator. But when i deliver the cab fie to my client the following...
6
by: shapper | last post by:
Hello, I am creating a form that includes a few JQuery scripts and TinyMCE Editor: http://www.27lamps.com/Beta/Form/Form.html I am having a few problems with my CSS: 1. Restyling the Select
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.