function showFlashVideo(id, width, height) {
	window.open(document.getElementById(id) + "?width=" + width + "&height=" + height, id, 'scrollbars=no, width=' + (width + 50) + ', height=' + (height + 50));

}

function linkReplace(id, width, height) {

	element = document.getElementById(id);

	if(element) {
		element.onclick = function() {
			showFlashVideo(id, width, height);
			return false;
		}
	}
}
