
function showPic(nID) {
	
	var height = 300 ;       //Set height
	var width = 300 ;        //Set width
	var name = 'picWin' ; 	//Set window name
	var top = 10 ;           //Set distance from top
	var left = 10 ;          //Set distance from bottom
	var srcPath = "http://www.summitevents.com/images/venues/" + nID + ".jpeg";
	var attributes = "'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=yes,directories=no,location=no,width='" + width + "',height='" + height + "',left='" + left + "',top='" + top + "'";
	var vWin=window.open( "venuepic.asp?src=" + srcPath, name, attributes);
	if (vWin==null){
		alert("Please enable pop-ups to see images.");
	}
}


function openPic(picSrc) {
	var height = 250 ;       //Set height
	var width = 100 ;        //Set width
	var name = 'picWin' ; 	//Set window name
	var top = 10 ;           //Set distance from top
	var left = 10 ;          //Set distance from bottom
	var srcPath = "http://www.summitevents.com/images/menu_pics/" + picSrc;
	var attributes = "'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=yes,directories=no,location=no,width='" + width + "',height='" + height + "',left='" + left + "',top='" + top + "'";
	var vWin=window.open( "openPic.asp?src=" + srcPath, name, attributes);
	if (vWin==null){
		alert("Please enable pop-ups to see images.");
	}
}

function open_galleryPic(picSrc) {
	var height = 250 ;       //Set height
	var width = 100 ;        //Set width
	var name = 'picWin' ; 	//Set window name
	var top = 10 ;           //Set distance from top
	var left = 10 ;          //Set distance from bottom
	var srcPath = "http://www.summitevents.com/images/galleries/" + picSrc;
	var attributes = "'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=yes,directories=no,location=no,width='" + width + "',height='" + height + "',left='" + left + "',top='" + top + "'";
	var vWin=window.open( "openPic.asp?src=" + srcPath, name, attributes);
	if (vWin==null){
		alert("Please enable pop-ups to see images.");
	}
}


