var win = null;
function makeDaughterWindow(page, intW, intH) 
{
	    win = window.open (page ,"newWin","width=" + intW + ",height=" + intH + ",scrollbars=0");

			if (win != null) 
			{
				if (win.opener == null) 
				{
					win.opener = self;
				}
			}
		win.focus();
}//;

function showILN(strArtist, rl) 
	{
		page=strPath+"iln/iln.html?artist="+strArtist+"&rl="+rl;
	    makeDaughterWindow(page,640,400);
	}//;