function popUp(url) {

var newWin = window.open(url, 'popWin', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,left=630,top=615,width=600,height=210');
(!newWin) ? window.location.href = url : newWin.focus();
}
function popUp1(url) {

var newWin = window.open(url, 'popWin1', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,left=10,top=10,width=900,height=480');
(!newWin) ? window.location.href = url : newWin.focus();
}
function popUp2(url) {

var newWin = window.open(url, 'popWin2', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,left=10,top=10,width=900');
(!newWin) ? window.location.href = url : newWin.focus();
}