function openWindow(url,name,toolbar,menu,scroll,resize,x,y){
properties="'toolbar="+toolbar+",location=0,directories=0,status=0,";
properties+="menubar="+menu+",scrollbars="+scroll+",resizable="+resize+",";
properties+="width="+x+",height="+y+"'";
window.open(url,name,properties);
}