﻿function PopupReview(shopId)
{
    //UNIQUE FOR EACH SHOP:vvv
    //shopId = 575
    //END UNIQUE FOR EACH SHOP^^^
    
    newWinWidth  = 750;
    newWinHeight = 550;
    newWinLeft = screen.width / 2 - newWinWidth / 2;
    newWinTop = screen.height / 2 - newWinHeight / 2;
    //alert(screen.height + " " + screen.width);
    winStats='toolbar=no,location=no,directories=no,menubar=no,';
    winStats+='scrollbars=yes,width=' + newWinWidth + ',height=' + newWinHeight + ',left=' + newWinLeft + ',top=' + newWinTop;
    NewWindow = window.open("http://www.getprice.com.au/shopreviewPopUp.aspx?shopid=" + shopId,"bubu",winStats);
    NewWindow.focus();
}
//window.onload = PopupReview;