how do i change the title of a window?

admin

Administrator
Staff member
hi, my website is at <!-- m --><a class="postlink" href="http://www.purpletequila.com">http://www.purpletequila.com</a><!-- m -->
when you click on the main picture, a flash window will popup, i want the title to display the text "PurpleTequila.com" instead of "http://www.purpletequila.com/purple.swf".

I'm using window.open to open the flash window, how can i change the title?

below is the code in index.htm

<html>
<head>
<title>PurpleTequila.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="666666" text="ffffff" link="#CCCCCC" vlink="#CCCCCC" alink="#CCCCCC">
<p align="center"><a href=http://www.webdeveloper.com/forum/archive/index.php/"javascript:PurpleTequila()"><img src="intropix.jpg" width="600" height="200" border="0"></a></p>
<p align="center"><font face="Geneva, Arial, Helvetica, san-serif" size="1">get
ready, download <a href="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" target="_blank">FLASH</a></font></p>
<p align="center"><img src="/cgi-sys/Count.cgi?df=count.dat|display=Counter|ft=0|md=10|frgb=0;0;0|dd=E"></p>

<script language="JavaScript">
function PurpleTequila() {
NewWin=window.open('purple.swf','PurpleTequila','toolbar=no,scrollBars=auto,resizable=no,status=no,w idth=800,height=600');
}
</script>

</body>
</html>
 
Back
Top