// JavaScript Document
function newWindow(tempwindow) {
	dioWindow = window.open(tempwindow,"tempWin","width=600,resizable=yes,scrollbars=yes")
	dioWindow.focus()
}
	
function fullWindow(fullwindow) {
dioWindow = window.open(fullwindow,"fullWin","width=600,location=yes,menubar=yes,resizable=yes,scrollbars=yes,toolbar=yes")
dioWindow.focus()
}
