/****** all Yes *******/
function openwin(url,name,w,h) {
 w = window.open1(url,name,"width="+w+",height="+h+",left=0,top=0,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,favorites=yes,resizable=yes");
w.focus();
}
/****** scroll only Yes *******/
function openwin2(url,name,w,h) {
 w = window.open(url,name,"width="+w+",height="+h+",left=0,top=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,favorites=no,resizable=no");
w.focus();
}
/****** all No *******/
function openwin3(url,name,w,h) {
 w = window.open(url,name,"width="+w+",height="+h+",left=0,top=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,favorites=no,resizable=no");
w.focus();
}
/******* resize only Yes ********/
function openwin4(url,name,w,h) {
 w = window.open(url,name,"width="+w+",height="+h+",left=0,top=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,favorites=no,resizable=yes");
w.focus();
}
