// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function handleClickGoProduct(){

		if ($('#product_finder')){  // jquery
					var value=$('#product_finder').val();
		   
		}else{ // prototype
			 var value=$F('product_finder');
	
		}
	
			location.href="/products/show/"+value;
	
	}

function handleClickGoSolution(){

	if ($('#industry_finder')){ // jquery
		var value=$('#industry_finder').val();
       
	}else{ // prototype
	    var value=$F('industry_finder');

	}

	location.href="/solutions/show/"+value;
	
}


function handleClickLoadGallery(){
		
		Modalbox.show('/admin/gallery',{title: "Image Gallery", width:800, height:600});
		
	}


function handleClickSubmitIssue(){

		Modalbox.show('http://spreadsheets.google.com/embeddedform?formkey=dGhYbVpiX0l5N1VjbHpDV20zeWlYSkE6MQ',{title: "Issues and Support Requests", width:800, height:600});

	}

