
function openwin(file, name, w, h, posx, posy, menu, tool, location, scroll, status, resize)


{
	infoWin = open(file, name, "'" + ',width=' + w + ',height=' + h + ',menubar=' + menu + ',toolbar=' + tool + ',location=' + location
						 		   + ',scrollbars=' + scroll + ',status=' + status + ',resizable=' + resize + "'");
								   

	infoWin.focus();
}

