// DIV SHOW HIDE
function ShowHide(div,openclose){
	thediv = document.getElementById(div);
	if(thediv.style.display == 'none' || openclose){
		thediv.style.display = 'inline';
	} else {
		thediv.style.display = 'none';
	}
	return true;
}

function win(fileName) {
   var resize = "";
   var titlebar = "";
   var wvalue = screen.availWidth;
   var hvalue = screen.availHeight;

   wvalue = 640;
   hvalue = 480;
   //hvalue = screen.availHeight - (screen.height - screen.availHeight) - 5;

   myFloater = window.open('','Main', 'top=0,left=0,scrollbars=yes,status=no,width=' + wvalue + ',height=' + hvalue + ',hotkeys=0,resizable=yes');

	myFloater.location.href = fileName;

}