﻿/**
 * @author tfuhlroth maxomedia - agentur für crossmedia-kommunikation bsw
 */

if (window['console'] === undefined) window.console = { log: function () {} };


var EuroRSCG = {};

/* -------------------------------------------------- */
/* =mediaPopup */

EuroRSCG.mediaPopup = {
	
	launch: function (src, width, height) {
		window.open('/media.aspx?src=' + encodeURIComponent(src) + '&width=' + width + '&height=' + height, 'mediaPopup', 'width=' + width + ',height=' + height + ',resizable=no,location=no,menubar=no,toolbar=no');
	}
	
};