var url = "http://www.cafeclubcz.com/concierto.html";
popUnder();
function popUnder()
{
var w = 500;
var h = 667;
props = "width=" + w + ",";
props += "height=" + h + ",";
props += "titlebar=1,";
props += "toolbar=0,";
props += "location=0,";
props += "menubar=0,"
props += "scrollbars=0,"
props += "resizable=0,"
props += "channelmode=0,"
props += "directories=0,"
props += "status=0";
var popwin = window.open("","popwin",props,true);
popwin.location = url;
popwin.opener.focus();
}