/**************************************************************************************************
POPUP JS
**************************************************************************************************/
function openLinkPopup(wUrl){
var wObj;
wWidth = 650;
wHeight = 600;
scWidthCenter = screen.availWidth / 2;
scHeightCenter = screen.availHeight / 2;
wOption =
"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="
+ wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth /
2)) + ",top=" + (scHeightCenter - (wHeight / 2));
wObj = window.open(wUrl,'link',wOption);
wObj.focus();
}

function openLinkPopupCampaign(wUrl){
var wObj;
wWidth = 430;
wHeight = 500;
scWidthCenter = screen.availWidth / 2;
scHeightCenter = screen.availHeight / 2;
wOption =
"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="
+ wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth /
2)) + ",top=" + (scHeightCenter - (wHeight / 2));
wObj = window.open(wUrl,'campaign',wOption);
wObj.focus();
}

function openLinkPopupLipDew(wUrl){
var wObj;
wWidth = 600;
wHeight = 600;
scWidthCenter = screen.availWidth / 2;
scHeightCenter = screen.availHeight / 2;
wOption =
"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="
+ wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth /
2)) + ",top=" + (scHeightCenter - (wHeight / 2));
wObj = window.open(wUrl,'campaign',wOption);
wObj.focus();
}

