function openFormatting(){
	var formattingKey = $('formattingKeyDiv');
	new Effect.Appear(formattingKey,{duration: .5});
}

function closeFormatting(){
	var formattingKey = $('formattingKeyDiv');
	new Effect.Fade(formattingKey,{duration: .5});
}

function showVideo(){
	
//alert("Sorry, this video is currently unavailable");
	//GB_show("TEASER VIDEO", "www.google.ca", 400,400);
	new Effect.Appear('myLightBox');
	$('myLightBox').innerHTML = '<a href="javascript:closeVideo()" style="color: #ff0000; font-family: Arial; font-size: 10pt; text-decoration: none">Close Me</a><iframe src ="http://polsonpier.com/files/newvideo_jan_16.html" width="100%" height="100%" style="border:none; text-align: center">';
	//new Ajax.updater('myLightBox','http://linux1.globacore.com/files/teaser.html',{asynchronous: true});
	
	
}

function closeVideo(){
	$('myLightBox').innerHTML = "";
	new Effect.Fade('myLightBox');
}

function init_request_quote_form(){
	//find the currently selected radio button
	var promoter = $('promoter_radio').checked;
	var corporate = $('corporate_radio').checked;
	
	if(corporate == false){
		//promoter is selected
			
			//hide the corporate details section
			$('corporate_details').style.display = "none";
			
			//hide the event type drop down
			$('event_type_corporate').style.display = "none";
			
			//display the promotion details
			$('promotion_details').style.display = "";
	}else{
		//corporate is selected
		
			//hide the promotion details
			$('promotion_details').style.display = "none";
			
			//show the corporate details section
			$('corporate_details').style.display = "";
			
			//show the event type drop down
			$('event_type_corporate').style.display = "";
			
	}
	
	
}