ואני רוצה שהפופאפ יהיה בידיוק בגודל של התמונה...
איך אני עושה שהוא לא ישאיר לי קצוות?הנה הסקריפט -
<!--- Hide script from old browsers
function OpenNewWindow(WindowPicture,WindowParameters)
{
NewWindow=window.open("","NewOne", WindowParameters);
NewWindow.document.write ("<HTML><HEAD><TITLE>");
NewWindow.document.write ("תמונה בגודל מלא");
NewWindow.document.write ("</TITLE></HEAD>");
NewWindow.document.write ("<BODY BGCOLOR='#ffffff'>");
NewWindow.document.write ("<A HREF='JavaScript:this.close()'><IMG SRC=");
NewWindow.document.write (WindowPicture);
NewWindow.document.write (" border='0'/></A>");
NewWindow.document.write ("</BODY></HTML>");
NewWindow.document.close();
return false;
}
// end hiding from old browsers -->
תודה רבה!