pop Window from a frame

liunx

Guest
Hi,<br />
I have designed web page with three frames Top, Middle & right frame. On the Top frame I have given a link to upload files - When I click on this link I want to display upload file ie, upload.asp page in a small window. <br />
<br />
Here is the code <br />
'*** Function to opene window ****'<br />
function modifyImage() {<br />
window.open("asp/UploadFile.asp", "File","left=200,top=200,width=450,height=100,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrol lbars=no")<br />
}<br />
<br />
'**** Td where I am calling javascript function in Top frame *****'<br />
<td width="110px" height="20px" align='center'><font class="textcolorWhite"><a target="_blank" href=http://www.webdeveloper.com/forum/archive/index.php/"javascript:modifyImage()" STYLE="text-decoration:none"">Upload</a></font></td><br />
<br />
When I clk on the link I get a blank window why??<br />
<br />
Plz help<br />
<br />
Shanuragu<!--content-->Change anchor tag as <br />
<a onclick="javascript:modifyImage()" STYLE="text-decoration:none">Upload</a></font></td><br />
<br />
Bhanu<!--content-->change it from <br />
<font class="blah"></font> <br />
to<br />
<span class="blah"></span> <br />
<br />
<br />
Best Wishes, <br />
David<!--content-->
 
Back
Top