/*  Custom JavaScript framework
 *  (c) 2005-2010 Campo Design Inc
 *  All rights reserved.
 *--------------------------------------------------------------------------*/
function setContainer(rpt) {
	  switch (rpt) {
	  	case 'qis':
	  		var h = 3200;
	  		break;
	  	case 'mis':
	  		var h = 3200;
	  		break;
	  	case 'me':
	  		var h = 2100; 
	  		break;
	  	case 'ms':
	  		var h = 3200;
	  		break;
	  	case 'p':
	  		var h = 2100;
	  		break;
	  	default:
	  		var h = 1050;
	  }
	  
	  var h = 1050;
	  
	  var theCheight = h + 'px';
      var theWheight = (h + 200) + 'px';
      parent.document.getElementById('wrapper').style.height = theWheight;
	  parent.document.getElementById('mainView').style.height = theCheight;
	  document.getElementById('rptFrame').style.height = theCheight;
	  
}

function stuffForm(url) {
    var el = document.getElementById('mainView');
    //alert(url);
    el.src = url;
    return false;
}

function resizeFrame(rpt) {
    var el = parent.document.getElementById('mainView');
    //alert(rpt);
    if (rpt == 'qis') {
    	el.height = '1800px';}
    if (rpt == 'qc') {
    	el.height = '1800px';}
    return false;
}

function hideElement(theE) { 
	document.getElementById(theE).style.display = 'none'; 
}

function showElement(theE) { 
	document.getElementById(theE).style.display = 'block'; 
}

function hideDiv(theDiv) { 
	document.getElementById(theDiv).style.visibility = 'hidden'; 
}

function showDiv(theDiv) { 
	document.getElementById(theDiv).style.visibility = 'visible'; 
} 

function showBtn(btnName) {
	if (btnName == 'year') {
		showDiv('cboYear');
		hideDiv('cboEvent');}
	if (btnName == 'event') {
		showDiv('cboEvent');
		hideDiv('cboYear');}	
}

function hideBtn(btnName) {
	if (btnName == 'year') {
		hideDiv('cboYear');}
	if (btnName == 'event') {
		hideDiv('cboEvent');}
		
}

function trapMouser(e) {
	var txtE = e;
	//alert(txtE);
	
}

function loadEvent(eventID) {
	
}
