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

function popUpView(business_id, name, URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open('popups/view.php?id=' + '" + business_id + "' + '&type=' + '" + name + "' + '&url=' + '"+ URL + "', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=600');");
}

function popUpVideo(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open('popups/video.php?url=' + '" + URL + "', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=425,height=344');");
}

function contactBusiness(email, name) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open('popups/contact_business.php?email=' + '" + email + "' + '&name=' + '"+ name + "', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=590,height=410');");
}

function contactFriend(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open('popups/send_to_friend.php?url=' + '" + URL + "', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=590,height=410');");
}
// End -->