//Values for the betting area iframe, according to these values the Iframe's height will change.

var linesHeight = '4000px';
var parlayHeight = '18100px';

//Differents heights for every main page for every tab on the betting area (FOOTBALL, BASEBALL, AUTO, FIGHTS, GOLF, etc) 

var mywebsite = new Array("football","baseball","auto","boxing","golf","tennis","golf","horses","hockey","soccer","basketball","exotics","lines","parlay");
var myheights = new Array(  '1600px', '600px', '550px','500px', '500px','500px','500px','750px','500px', '2500px', '1500px',     '1200px','3000px','10000px');



/*************************** DO NOT CHANGE THESE FUNCTIONS **************************/
// JavaScript Functions
function resizeIframe(myheight)
 {
	if(myheight == 'lines')
		myheight = linesHeight;
	if(myheight == 'parlay')
		myheight = parlayHeight;
	
	window.parent.parent.document.getElementById('BETTING').style.height= myheight;
 }
 
 function tabsResizeIframe(page)
 {	
	for (var i=0; i<mywebsite.length; i++) {
		if(mywebsite[i] == page){
			document.getElementById("BETTING").style.height = myheights[i]; 
		}		
	}
 }