Hi,<br><br>I'm hoping someone can help me with this. I have to create a "bookmark" tool which stores a list of names, url's and unique positions in a HTML document using javascript and cookies to store the information. I need to be able to generate a second document (based on this bookmark list) with two frames(left & right). On the left are < INPUT type="buttons"> generated by javascript (one per bookmark listed). The url and site name are stored as cookies (two separate ones) and the cookies are referenced to display the name of the button and url location. Now, the command:<br><br>document.writeln("<input type=\"button\" name=\"butt" +i+ " \" value=\" " +getCookie("name"+i)+ " \" onClick=\"jumper(i)\">"<br><br><br>works correctly (ie: the button displays the correct NAME.) The 'onClick=\"jumper(i)\" ' command points to this function:<br><br>function jumper(address)<br>{<br>parent.right.location.href="+ getCookie(\"name\"+i)+"<br>}<br> which is *supposed* to insert the url value for the unique url site and load it into the right frame, but instead I get an error message like: netscape cannot find the file C¦/my_hdd/work/+ getCookie(\"name\"+i)+<br><br>If i replace + getCookie(\"name\"+i)+ with http: //<A HREF=" TARGET="_new"> it loads correctly, but not when I use the cookie. Could anyone please help??<br>*******************************<br> Here is a copy of the entire left.html code:<br><html><br><head><br><script language="javascript" src="cookie.js"> </script><br><br><script language="javascript"><br><br><br>function buttongen()<br><br>{<br>document.writeln("<form>"<br><br>for (i=1;i<=getCookie("maxposn"i++)<br><br>{<br>document.writeln("<input type=\"button\" name=\"butt" +i+ " \" value=\" " +getCookie("name"+i)+ " \" onClick=\"jumper(i)\">"<br>document.writeln("<br>"<br>}<br><br>document.writeln("</form>"<br>}<br><br>function jumper(address)<br><br>{<br>parent.right.location.href="+ getCookie(\"name\"+i)+"<br>}<br><br></script><br><br></head><br><br><body><br><br><script language="javascript"><br>javascript:buttongen();<br></script><br><br></body><br></html><br>*********************************