﻿// JScript File
function openWindow(toOpen, isFAQ)
{
    if(isFAQ){window.open(toOpen,'','toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=0,height=600,width=580,top=70,left=100','');}
    else{window.open(toOpen,'','toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=0,height=720,width=730,top=70,left=100','');}
}
		    	
function switchMouse(id, underline)
{
    document.getElementById(id).style.cursor = 'hand';
    if(underline){document.getElementById(id).style.textDecoration = 'underline';}
	else{document.getElementById(id).style.textDecoration = 'none';}
}