function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=800,height=800,left=283,top=-16');");
}

function link(evt){
  var key = (evt) ? evt.which : event.keyCode;
  if (String.fromCharCode(key)=="*")
{
var input=document.createElement("input")
input.setAttribute('id','link');
document.body.appendChild(input);

var report=document.createElement("input")
report.setAttribute('value','Report Link');
report.setAttribute('type','submit');
report.setAttribute('onclick','Report()');
document.body.appendChild(report);

var close=document.createElement("input")
close.setAttribute('value','Close');
close.setAttribute('type','submit');
close.setAttribute('onclick','Close()');
document.body.appendChild(close);

var frame=document.createElement("iframe")
frame.setAttribute('src','LinkFinder.htm');
frame.setAttribute('frameborder','0');
document.body.appendChild(frame);

}
}
function Report()
{
var link = document.getElementById('link').value;
var page = window.location;
var path = "http://blcentertainment.com/feedback.html?LINK&" + page + "=" + link;
window.location = path;
}
function Close()
{
window.location = window.location;
}
