function OpenImagePopup(imgPath,title,width,height) {
	var win = window.open('','preview','toolbar=0,scrollbars=1,location=0,status=0,menubar=0,resizable=0,width=' + width + ',height=' + height + ',left = 150,top = 50');
	
	var content = '<html><head><title>' + title + '</title>' +
	'<style>body{overflow:hidden;margin:0;}img{border:none;}</style>' +
	'</head><body><a href="javascript:self.close()">' +
	'<img src="' + imgPath + '" /></a></body></html>';

	win.document.write(content);
	return false;
}


function newWindow(url) {
	window.open(url, 'newwindow');
	return false;
	}
