﻿function OpenPressRelease(sender)
{
	if(sender != null)
	{
		var src = sender.src.split('/covers/').join('/').split('_cover.jpg').join('.jpg');
		var win = window.open('', 'article');
		win.document.open();
		win.document.writeln('<html><title>Carmina Campus</title><body><img src="' + src + '" /></body></html>');		
		win.document.close();
	}
};

function OpenPressReleaseFile(sender, fileName)
{
	if(sender != null)
	{
		var folderPath = sender.src.substring(0, sender.src.lastIndexOf('/') + 1);
		var filePath = folderPath + fileName;
		var win = window.open('', 'article');
		win.document.open();
		win.document.writeln('<html><title>Carmina Campus</title><body><img src="' + filePath + '" /></body></html>');		
		win.document.close();
	}
};