View Single Post
  #29  
Old 01-23-2008, 08:30 AM
Dkozikowski's Avatar
Dkozikowski+ Offline
Team Pixelpost
 
Join Date: Oct 2005
Posts: 1,855
Send a message via AIM to Dkozikowski
Code:
<script type="text/javascript">
<!--
function browsing(){
var existprev = "<IMAGE_PREVIOUS_ID>";
var existnext = "<IMAGE_NEXT_ID>";
if (existprev != "<IMAGE_ID>"){
document.write('<a href="#" id="menu_browse_prev" onclick="document.location=\'index.php?showimage=< IMAGE_PREVIOUS_ID>\';"></a>');
}
if (existnext != "<IMAGE_ID>"){
document.write('<a href="#" id="menu_browse_next" onclick="document.location=\'index.php?showimage=< IMAGE_NEXT_ID>\';"></a>');
}
}
// -->
</script>
NOTICE (<!-- and // -->):

Code:
<script type="text/javascript">
<!--
     // JS code here
// -->
</script>
Reply With Quote