function popWin(myURL,myWindow,windowWidth,windowHeight,toolbarState,statusState,locationState,resizableState,scrollbarsState, directoriesState, addressState,menubarState) {
	var windowAttributes = 'width=' + windowWidth + ',' + 'height=' + windowHeight + ',' + 'toolbar=' + toolbarState + ',' + 'location=' + locationState + ',' + 'resizable=' + resizableState + ',' + 'scrollbars=' + scrollbarsState + ',' + 'directories=' + directoriesState + ',' + 'status=' + statusState + ',' + 'menubar=' + menubarState;
	window.open(myURL, myWindow, windowAttributes);
}