function enlarge(title, image)
{
	var options = "toolbar=no,scrollbars=no,resizable=no,width=540,height=630,top=150,left=300";
	var url = "../popup.php?title=" + escape(title) + "&image=" + image;
	windowName=window.open(url,"popwindow",options);
	windowName.focus();
}

function video()
{
	var options = "toolbar=no,scrollbars=no,resizable=no,width=350,height=280,top=150,left=300";
	var url = "../thinveneer/video.html";
	windowName=window.open(url,"popwindow",options);
	windowName.focus();
}

function map(title, image1, image2)
{
	var options = "toolbar=no,scrollbars=yes,resizable=yes,width=560,height=575,top=150,left=300";
	var url = "../map.php?title=" + escape(title) + "&image1=" + image1 + "&image2=" + image2;
	windowName=window.open(url,"popwindow",options);
	windowName.focus();
}

function specs(type,blendName,mortarType,jointType)
{
	var options = "toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,width=540,height=575,top=150,left=300";
	var url = "../specs.php?specType=" + type + "&blendName=" + blendName + "&mortarType=" + mortarType + "&jointType=" + jointType;
	windowName = window.open(url,"specwindow",options);
	windowName.focus();
}

function disclaimer(url)
{
	var options = "toolbar=no,menubar=no,scrollbars=no,resizable,yes,width=540,height=300,top=150,left=300";
	windowName=window.open(url,"popwindow",options);
	windowName.focus();
}
