// lyrics_popup: Opens a popup window
//


function open_popup(url, x, y, h, w) {
popupWin=window.open(url,'remote','width='+w+',height='+h+',top='+x+',left='+y)
}

function close_popup()  
{
  parent.close();
}

// close_popup_go: Closes the current popup and navigates the main window 
// to the URL passed on in the parameter.
function close_popup_go(x)  
{
  top.opener.location.href = x;
  parent.close(); 
}

// keep_popup_go: Keeps the current popup and navigates the main window 
// to the URL passed on in the parameter.
function keep_popup_go(x)  
{
  top.opener.location.href = x;
}

// close_popup_reload: Closes the current popup and reloads the parent window 
// to the URL passed on in the parameter.
function close_popup_reload()
{
//  top.opener.location.href = top.opener.location.href;
  top.opener.location.reload();
  parent.close(); 
}

// used for onclick links
function GoThere2(target) 
{ 
	top.window.location.href=target; 
}

// used for onclick links
function GoThere3(target) 
{ 
	var NewWindow = window.open(target,'','');
}
