
/*
	boundary.js
	v:1.0
	Copyright 2005 - Mindwirx Systems Corporation
*/

function openWind(imgpath, imgtext){
	wind = window.open("", "galleryWindow", "toolbar=no,menubar=no,resizable=no,scrollbars=no,width=450,height=600")
	wind.document.writeln("<html>")
	wind.document.writeln("<head><title>Boundary Group</title></head>")
	wind.document.writeln("<body>")
	wind.document.writeln("<center><img src='"+imgpath+"'></center>")
	wind.document.writeln("<center><small>"+imgtext+"</small></center>")
	wind.document.writeln("</body></html>")
	wind.focus();
}
