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>