
function popupWin() {

//setTimeout('windowProp(txt)', 2000); 		// delay 3 seconds before opening
setTimeout('windowProp()', 1500); 		// delay 3 seconds before opening
//alert(txt);
}
function windowProp(txt) {
	newWindow = window.open('musicplayer.htm','newWin','width=290px,height=330px');
	if (!newWindow || newWindow == null) {
		alert ("Popup blocker detected. \nPlease temporary disable your popup blocker. \n\nIf you are using Google toolbar, please hold down your Ctrl key while clicking the music player link.");	
	}
//newWindow.document.write(txt);
}


