i am opening a new window with flash and javaScript. and i need to control the name of the new window. since it is a site that is hosted in another site, at the top of my window appears the name of the main site. it ignoers the title tag originally in the window.
the code in flash is:
Code:
getURL("javascript:fixedSize('gallery/bigPicts1.html', '', 'menubar=0, tollbar=0, scrollbars=yes, resizable=0, width=800, height=600');");
and the code in the html page which is holding the flash is:
Code:
function fixedSize(url,name,features) {
win = window.open(url,name,features);
|