<!--
function popUp(URLtoOpen, windowName, windowFeatures) { 
newWindow=window.open(URLtoOpen, windowName, windowFeatures); 
}

function popBefore(theURL,winName,width,height,features) {
    var window_width = width;
    var window_height = height;
    var newfeatures= features;
    var window_top = (screen.height-window_height)/2;
    var window_left = (screen.width-window_width)/2;
    newWindow=window.open(''+ theURL + '',''+ winName + '','width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + ',features=' + newfeatures + '');
    newWindow.focus();
}

function askpop(){
newmiddle = window.open("/sellerppn/seller_collect_form.php","","height=465,width=320,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,location=0,toolbar=0,left="+((screen.availWidth-800)/2)+",top="+((screen.availHeight-600)/2)+"");
newmiddle.blur()  
}

 //-->
