//<!-- Javascript file

function showExam(infoFile,height,width) {
	var PopupWindow
	var ConfigWindow = "scrollbars,resizable,width=" + width + ",height=" + height
	if (PopupWindow == null) {
	PopupWindow = window.open("","PicPopup",ConfigWindow)
	}

	if (PopupWindow != null) {
		var newURL = infoFile
		PopupWindow.window.location.href = newURL
		PopupWindow.moveTo(100,30)		
		PopupWindow.focus()
	}
}

function RefreshWindows() {
    var PhotoPopupWindow
    if (PhotoPopupWindow == null) {
        PhotoPopupWindow = window.open("","PhotoPopup","width=1,height=1")
    }    
     if (PhotoPopupWindow != null) {
        PhotoPopupWindow.close();
    }

    var DefinitionPopupWindow
    if (DefinitionPopupWindow == null) {
        DefinitionPopupWindow = window.open("","DefinitionPopup","width=1,height=1")
    }
     if (DefinitionPopupWindow != null) {
        DefinitionPopupWindow.close();
    }
}

function CloseExam() {
    var ExamPopupWindow
    if (ExamPopupWindow == null) {
            ExamPopupWindow = window.open("","ExamPopup","width=1,height=1")
    }
     if (ExamPopupWindow != null) {
        ExamPopupWindow.close();
    }
}



//-->
