<!-- 
$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='colBxSecurity']").colorbox(
													 {
														opacity:.9,
														iframe:true, 
														innerWidth:330, 
														innerHeight:350, 
														scrolling:false
													 }
													 );
			});
$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='colBxEmail']").colorbox(
													 {
														opacity:.9,
														iframe:true, 
														innerWidth:700, 
														innerHeight:700, 
														scrolling:false
													 }
													 );
			});
$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='colBxEmailPanel']").colorbox(
													 {
														opacity:.9,
														iframe:true, 
														innerWidth:700, 
														innerHeight:700, 
														scrolling:false
													 }
													 );
			});

$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='colBxProf']").colorbox(
													 {
														opacity:.9,
														iframe:true, 
														innerWidth:750, 
														innerHeight:750, 
														scrolling:false
													 }
													 );
			});
			
$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='colPhoto']").colorbox(
													 {
														opacity:.9,
														iframe:true, 
														innerWidth:500, 
														innerHeight:350, 
														scrolling:false
													 }
													 );
			});
			
$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='colPhotoPanel']").colorbox(
													 {
														opacity:.9,
														iframe:true, 
														innerWidth:500, 
														innerHeight:350, 
														scrolling:false
													 }
													 );
			});
			
$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='colBxSettings']").colorbox(
													 {
														opacity:.9,
														iframe:true, 
														innerWidth:500, 
														innerHeight:700, 
														scrolling:false
													 }
													 );
			});
			
$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='colBxSettingsPanel']").colorbox(
													 {
														opacity:.9,
														iframe:true, 
														innerWidth:500, 
														innerHeight:700, 
														scrolling:false
													 }
													 );
			});
			
			$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='colBxcontactinfo']").colorbox(
													 {
														opacity:.9,
														iframe:true, 
														innerWidth:750, 
														innerHeight:730, 
														scrolling:true,
														close:"Click 'X' To Close",
														overlayClose:false
													 }
													 );
			});
		
function GetSelectedItem(){
			
				chosen = ""
				len = document.contact.group1.length
				
				for (i = 0; i < len; i++) {
					if (document.contact.group1[i].checked) {
						chosen = document.contact.group1[i].value
					}
				}
				
				if (chosen == "") {
					alert("No Location Chosen")
				}
				else {
					alert(chosen)
				}
			}		
//--> 
