comment = new Array(23);
comment[0] = "it makes us feel good to help people.";
comment[1] = "we know how to get you out of a business once it is profitable?";
comment[2] = "we know the client is not the file.";
comment[3] = "we make the client feel that they are the number one priority.";
comment[4] = "we help the client make his business lucrative.";
comment[5] = "we make sure the client is following the rules.";
comment[6] = "we work with people to help solve problems.";
comment[7] = "we protect the clients' assets.";
comment[8] = "we allow the client to focus on their job &ldquo;running the business.&rdquo;";
comment[9] = "we are &ldquo;Appropriately aggressive.&rdquo;";
comment[10] = "we are &ldquo;Appropriately aggressive.&rdquo;";
comment[11] = "we offer competitive rates.";
comment[12] = "we prize the knowledge of the staff.";
comment[13] = "we transfer the knowledge of running a business to the management of your business.";
comment[14] = "we offer Personal Service.";
comment[15] = "our staff has diverse expertise.";
comment[16] = "our staff is well rounded.";
comment[17] = "we provide our clients with special attention.";
comment[18] = "we have years of IRS Experience.";
comment[19] = "we have the right vendor contacts.";
comment[20] = "we know Operations.";
comment[21] = "we know your terminology.";
comment[22] = "we have an understanding of your industry.";
comment[23] = "our president has been CFO of trucking company.";

function loadComments(){
 var commentIndex = Math.floor(Math.round(Math.random()*23));
  //TipDiv.innerHTML =  comment[commentIndex];
  //TipDiv.innerHTML =  commentIndex;
document.getElementById("TipDiv").innerHTML  = comment[commentIndex];
	
}

var winXPos = 0;
var winYPos = 0;

function openWin(theValue){
	var newWin = window.open("http://www.irs.gov/pub/irs-pdf/"+ theValue +".pdf", 'newWin','width=600,height=480,top=10,left=10,scrollbars=yes,resizable=yes');
}

	function checkValues(){
	var counter = 0;
	var tooManyAlert = false;
	for(var i = 0;i<document.download_menu.pdf_files.length;i++){
		if(document.download_menu.pdf_files.options[i].selected == true){
		counter = counter + 1;
		}
	}
	if (counter > 5){
	tooManyAlert = true;
	}
	
	
	if(tooManyAlert == false){
		for(var i = 0;i<document.download_menu.pdf_files.length;i++){
			if(document.download_menu.pdf_files.options[i].selected == true){
			openWin(document.download_menu.pdf_files.options[i].value);
			}
		}
	}
	else { alert("Too many windows open, please only choose 5 or less at one time");}
	
	}
