// JavaScript Document
var popupWindow;
var flaPop;
var mainWindow;


function closeBkgMusic(){
  // document.write(flaPop); 
   var mainWin;
   var temp = window.parent;
      while (temp!=null){
	  mainWin = temp;
	  if (flaPop!=null){
	  document.write(mainWin.flaPop.name);
	  }
	  temp =temp.parent;
	  }
   if(flaPop!=null)
   flaPop.window.close();
}

function popIsOpen(){
if(!popupWindow.closed)
 return true;
 else 
 return false;
}

function popupwindow(artist,track,type){
 	
	if (popupWindow==null || !popIsOpen()){
	//   closeBkgMusic();
		 popupWindow = window.open(""+artist+track+type+".htm","","height=200,width=360,menubar=0,resizable=0,scrollbars=0, status=0,titlebar=0,toolbar=0,left=500,top=400");
	}
	else if (popupWindow!=null&&popIsOpen()){
	// alert(popupWindow.location.toString());
	popupWindow.location =""+artist+track+type+".htm";
	}
}

function closePop(){
  if (popupWindow!=null)
     popupWindow.close();
}

function intro(){
mainWindow =window.open("page2.htm","","height=615,width=776,menubar=0,resizable=0,scrollbars=0, status=0,titlebar=0,toolbar=0,left=15,top=100");
//flaPop = open("music.htm","","height=10,width=250,menubar=0,resizable=0,scrollbars=0, status=0,titlebar=0,toolbar=0,left=0,top=0");
//flaPop.name = 'popUp';
}

