﻿

function pop(str) {
        popwin = window.open(str,'popwin','scrollbars=yes,resizable=yes,width=500,height=400,status=no,location=no,toolbar=no');
        popwin.focus();
}

function popwin(str,str2,dimx,dimy) {
         popWin = window.open(str,str2,'scrollbars=yes,resizable=no,width='+ dimx +',height='+ dimy +',status=no,location=no,toolbar=no');
         popWin.focus();
}

function popwin2(str,str2,dimx,dimy) {
         popWin = window.open(str,str2,'scrollbars=no,resizable=no,width='+ dimx +',height='+ dimy +',status=no,location=no,toolbar=no');
         popWin.focus();
}

function popimg(str,str2,dimx,dimy) {
         popWin = window.open(str,str2,'top=100,left=100,scrollbars=no,resizable=yes,width='+ dimx +',height='+ dimy +',status=no,location=no,toolbar=no');
         popWin.focus();
}

