// resize page divs to make site look good on Mozilla
window.onload = function() {
	var objects = document.getElementsByTagName("object");
	for(var i = 0; i != objects.length; i++) {
		objects[i].outerHTML = objects[i].outerHTML;
	}
}

function popScreen(sRoot, sXml, sURI, galleryID, sImgID) {
	var sPopScriptPath = sRoot + "popup.asp?xml=" + sXml + "&file=" + sURI + "&galleryID=" + galleryID + "&imgid=" + sImgID + "";
	var newWin = window.open(sPopScriptPath, "popwin", "width=50,height=50,status=yes")
}

function openVideoWindow(sRoot, sVidLoc) {
	var sPopScriptPath = sRoot + "video.asp?video="+ sVidLoc +"";
	var newWin = window.open(sPopScriptPath, "popwin", "width=420,height=370")
}

function popScreen2(sRoot, sURI, sExtra, sCategory, sSubCategory, sImgID) {
	var sPopScriptPath = sRoot + "popup2.asp?file=" + sURI + "&extra=" + sExtra + "&category=" + sCategory + "&subcategory=" + sSubCategory + "&imgid=" + sImgID;
	var newWin = window.open(sPopScriptPath, "popwin", "width=500,height=500,status=yes")
}