PLEASE HELP! chromeless window

i did the tutorial and now ive made my own but how can i make more then one? i am doing a flash site and i want certain parts to be pop ups only…and i tried adding the same code after the first one but it didnt work, can anyone help please? if you dont understand my question i can say it another way…

<script type="text/javascript" src="ByKlein_chromeless2.0.js"></script>
<script type="text/javascript" >
function createChromeless()
{
		/////////////////////////////////////////////
		//This are the attributes you can customize//
		/////////////////////////////////////////////
		var B = "http://tourniquet21.tripod.com/the****.htm";        // URL
		var Y = "Example by Kirupa";                 // title
		var K = "c_title.gif";             // titlebarImage
		var L = 23;                                            // titlebarHeight
		var E = "Arial";                                       // titleFont
		var I = 10;                                            // titleSize
		var N = "#000000";                                     // titleColor
		var C = true;                                         // scrollbars
		var h = 500;                                           // width (w)   
		var r = 400;                                           // height (h)
		var o = true;                                          // centered
		var m = 0;                                            // xPos
		var e = 0;                                            // yPos
		var l = "#000000";                                     // borderColor
		var e_= 5;                                             // borderSize
		var s = "minimize.gif";            // minimizeBottom
		var s_= "close.gif";               // closeBottom

		myChromeless = new ChromelessWindow(B,Y,K,L,E,I,N,C,h,r,o,m,e,l,e_,s,s_);
}
createChromeless()
</script>