Hello,
I made a pop up window on my website. I actually don't like the button we use to open the window but don't know how to change it for an other.
The button is on this page:
Here
Its the button call "Complete fish diseases diagnosis" in the middle of the page.
That would be great to replace that crapy button with something nice.
Here is the code I have use to make that pop-up:
In the <head> section
<SCRIPT LANGUAGE="JavaScript">
<!-- Idea by: Nic Wolfe -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!!
http://javascript.internet.com -->
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,men ubar=0,resizable=1,width=520,height=625');");
}
// End -->
</script>
in the <body> section
<CENTER><form>
<input type=button value="COMPLETE FISH DISEASE DIAGNOSIS" onClick="javascript
:popUp('http://www.aquariumobsession.com/diseases_diagnosis/diseasesdiagnosis')">
</form></CENTER>
I know nothing about javascript. Could anyone show me what part of that code I must change?
Thank you for your time.