function openWin(url) { 
	w = open(url, "newwin", // URL and name
         "width=600,height=600," + // size
         "location=0,menubar=0," +     // chrome
         "resizable=0,scrollbars=1,status,toolbar=0");
}
