﻿function popUp(URL, WIDTHV, HEIGHTV) {
    var parts=URL.split("?");
    if(parts.length == 1 || URL.match('MedicationPricingTool')) {
        window.open( URL, 'pop', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + WIDTHV + ',height=' + HEIGHTV + ',left = 382,top = 220.5');
    }
    else {
        var newName = repall(repall(parts[1],"&",""),"=","");
        window.open( URL, 'pop' + newName, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + WIDTHV + ',height=' + HEIGHTV + ',left = 382,top = 220.5');
    }    
}
function popUpAlt(URL, Name, WIDTHV, HEIGHTV) {
        window.open( URL, Name, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + WIDTHV + ',height=' + HEIGHTV + ',left = 382,top = 220.5');
}
function repall(a,b,c){
var t = a;
var i = t.indexOf(b);
while(i > -1) {
    t = t.replace(b, c); i = t.indexOf(b, i + c.length + 1);
} 
return t;
}