function GalleryNavigate(url) {
	document.location = url;
}

function GalleryShowImage(url,w,h) {
	//window.open(url,'window name','attribute1,attribute2')
	
	attributes = "width=" + w + ",height=" + h;
	
	window.open(url,"GalleryImage",attributes);
}

