﻿/**
 * PopUp: Built for Bacardi.com
 * Descpription: pop up window.
 *
 *

 */


function openPopUp(location, title, w, h, resize, scrollbars){

window.open(location,"bacardi",'width=' + w + ', height=' + h + ', resizable=' + resize + ', scrollbars=' + scrollbars);

}

function legalPopUp(location, title){

openPopUp(location, title, 537, 545, 'no', 'yes');

}

