// JavaScript Document
function showRedirectOpt(str, num) {
        var ans = confirm(str);
        var link = new Array();

        //all the links you want numbered go here:
        link[0] = "mailto:info@m2iplaw.com";
		link[1] = "mailto:tbegley@m2IPlaw.com";
        
        //this is the part that actually redirects depending on whether the user clicked Yes or No in the prompt.
        new_url = link[num];
        if(ans) {
                window.location = new_url;
        } else {
                alert('Did not redirect.');
        }
}


function printWindow(){
	bV = parseInt(navigator.appVersion)
	if (bV >= 4) window.print()
 } 
