//////////////////////////////////////////////////////////////////////////////
//                                                                          //
//              instinctive content management system (icms)                //
//                                                                          //
//     Copyright (C) 2006 Alexander Ewering / instinctive mediaworks        //
//                                                                          //
//                        All Rights Reserved.                              //
//                                                                          //
//////////////////////////////////////////////////////////////////////////////

var icms_popimgwin = 0;
var icms_popimgwin_iszoomed = '';

function icms_popimg(file, width, height, caption)
{
	if (!width || !height) return;

	var top = screen.height/2 - height/2;
	var left = screen.width/2 - width/2;

	if (icms_popimgwin) {
		icms_popimgwin.close();
		icms_popimgwin = 0;

		if (icms_popimgwin_iszoomed == file) return;
	}

	icms_popimgwin_iszoomed = file;

	icms_popimgwin = window.open('', 'name','height='+height+',width='+width+',left='+left+',top='+top+',resizable=no,scrollbars=no,toolbar=no,status=no');
	var html = '';
	html +=
	'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">'+
	'<html style="height:100%"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">'+
	'<title>'+caption+'<\/title><\/head><body style="margin: 0 0 0 0;padding: 0 0 0 0">'+
	'<a href="#" onclick="window.close(); return false"><img src="'+file+'" border=0 alt=""></a>'+
	'<\/body><\/html>';
	icms_popimgwin.document.write(html);
	icms_popimgwin.document.close();
}

