function winopen(link,name,w,h,resize){
if(resize=="0")
options="toolbar=1,menubar=1,scrollbars=0,resizable=0,status=0,location=0,directories,copyhistory,height="+h+",width="+w;
else
options="toolbar=1,menubar=1,scrollbars=1,resizable=1,status=0,location=0,directories,copyhistory,height="+h+",width="+w;
window = window.open(link,name,options)
}

function winopenall(link,name){
window = window.open(link,name,"height=200,width=335,status=yes,toolbar=no,scrollbars=yes,menubar=no,location=no")
}

