﻿
function openLink(url) {
    window.open(url);
}

function openPage(url) {
    window.open(url);
}

function playVideo(id, width, height) {
    document.getElementById("videoPlayerDiv").innerHTML = '<object width="' + width + '" height="' + height + '"><param name="movie" value="http://www.youtube.com/v/' + id + '&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/' + id + '&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="' + width + '" height="' + height + '"></embed></object>';
}
