function launchWindow(dest,name,x,y){
	newWin = window.open(dest,name,"width=" + x + ",height=" + y + ",scrollbars=no,menubar=no,resizable=no");
	newWin.focus();
}
