I haven't come across your use of rel in html. In any case, I don't
think it is going to work in javascript. If what you are trying to do
is pop up the url in a new window whose size you can control, then use
the function below. Don't be worried about the duplicate size
specifications - that is to cater for different browsers (IE and the
rest).

// Pop-up window generator
var popUpWin = null;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin) { if(!popUpWin.closed) popUpWin.close();}
  popUpWin = open(URLStr, 'popUpWin',
'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=yes,copyhistory=yes,width='+width
+',height='+height+',left='+left+',top='+top+',screenX='+left
+',screenY='+top+'');
  popUpWin.focus();
}

and is called like

popUpWindow('http://localhost/Details/business.html",100,20,720,720);

see it in action on

http://www.lanerealty.com.au/lr11560.html where it is used to present
a pop up map.

The pop-up function is in the javascript.js file


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to