// JavaScript Document

	
function gallery(img_src, img_alt, img_cap) {

	if(document.images) {

		document.getElementById('gallery-main').src = 'images/' + img_src;
		document.getElementById('gallery-main').alt = img_alt;
		document.getElementById('gallery-caption').firstChild.nodeValue = img_cap;
		return false;

	}

	return true;

}

function openWin(url,width,height) {
	var previewWin = window.open(url,'popup','scrollbars=no,status=no,resizeable=no,location=no,directories=no,toolbar=no,menubar=no,width='+width+',height='+height)
}
