/*-------------------------------------------------------------------------------------------------------*/
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
/*-------------------------------------------------------------------------------------------------------*/
function clearInput() {
	document.getElementById('mySearch').value = '';
}
/*-------------------------------------------------------------------------------------------------------*/
function loadProgram() {}
/*-------------------------------------------------------------------------------------------------------*/
function hideLinkFocus() {  
	if (isIE) {for (i = 0; i < document.links.length; i++) {document.links[i].hideFocus = true;}}
}
/*-------------------------------------------------------------------------------------------------------*/
function openWindow(myLocation) {
	var posX = (screen.availWidth - 600) / 2;
	var posY = (screen.availHeight - 700) / 2;
	var myWindow = window.open(myLocation, 'popup', 'resizable=yes, status=no, menubar=yes, scrollbars, width=600, height=700, left='+posX+', top='+posY);
	myWindow.resizeTo(600, 700);
	myWindow.focus();
}
/*-------------------------------------------------------------------------------------------------------*/

