function popTrailer() {
	var URL				= 'trailer/trailer.html?id=trailer'
	var windowWidth 	= 550;
	var windowHeight	= 600;
    var args = "width=" + windowWidth + ","
	    	+ "height=" + windowHeight + ","
	    	+ "location=0,"
		    + "menubar=0,"
		    + "status=0"
	siteWin = window.open(URL, 'popTrailer', args);
}

function popGallery(id) {
//	alert('This displays the gallery popup');
	var URL				= 'gallery/view.html' + ((id != null) ? '?id='+id : '');
	var windowWidth 	= 550;
	var windowHeight	= 530;
    var args = "width=" + windowWidth + ","
	    	+ "height=" + windowHeight + ","
	    	+ "location=0,"
		    + "menubar=0,"
		    + "status=0"
	siteWin = window.open(URL, 'popGallery', args);	
}

function popPoster() {
	var URL				= 'poster/poster.html'
	var windowWidth 	= 500;
	var windowHeight	= 715;
    var args = "width=" + windowWidth + ","
	    	+ "height=" + windowHeight + ","
	    	+ "location=0,"
		    + "menubar=0,"
		    + "status=0"
	siteWin = window.open(URL, 'popPoster', args);
}

function popPartners() {
	var URL				= 'partners/partners.html'
	var windowWidth 	= 550;
	var windowHeight	= 620;
    var args = "width=" + windowWidth + ","
	    	+ "height=" + windowHeight + ","
	    	+ "location=0,"
		    + "menubar=0,"
		    + "status=0"
	siteWin = window.open(URL, 'popPartners', args);
}
function popMakers() {
	var URL				= 'makers/makers.html'
	var windowWidth 	= 550;
	var windowHeight	= 500;
    var args = "width=" + windowWidth + ","
	    	+ "height=" + windowHeight + ","
	    	+ "location=0,"
		    + "menubar=0,"
		    + "status=0"
	siteWin = window.open(URL, 'popMakers', args);
}