/**************
*  openImage.js
*  (c) 2005, MPBS Industries. All rights Reserved. www.mpbs.com
*  Built by Radiant Core Inc. on the Foundation Website Platform. www.radiantcore.com
*************************************************************************************/

function openImage( target ){
	imageWindow = window.open('/imageViewer/' + target, 'imageWindow', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=680,height=450');
	imageWindow.focus();
}

function openImageCatalog( product ){
	imageWindow = window.open('/imageViewer/product/' + product, 'imageWindow', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=620,height=450');
	imageWindow.focus();
}

function closeWindow(){
	self.close();
}