﻿//function RegisterVideoTemplate() {
//    var videoTmplText =
//        "<div class=\"video\" id=\"videoContainer\">"+
//        "<div id=\"ytembed\">" +
//            "You need Flash player 8+ and JavaScript enabled to view this video." +
//        "</div></div>";

//    $.template("videoTmpl", videoTmplText); // Compile the template as named template so we can reuse it
//}

function RegisterVideoTemplate() {
    var videoTmplText =
        "<div class=\"video\" id=\"videoContainer\">" +
        "<div id=\"ytembed\">" +
            "<iframe width=\"${width}\" height=\"${height}\" frameborder=\"0\" src=\"http://www.youtube.com/embed/${url}?wmode=opaque\" type=\"text/html\"></iframe>" +
        "</div></div>";

    $.template("videoTmpl", videoTmplText); // Compile the template as named template so we can reuse it
}

function RegisterImTemplate()
{
    var phTemplateText = "<div class=\"image\">" +
	    "<div class=\"imagewrapper\">" +
	        "<img src=\"${url}\" alt=\"\" />" +
        "</div>" +
	    "<div id=\"photocredit\" class=\"photocredit\">" +
            "<span id=\"photocreditLabel\" style=\"visibility:hiden;\"></span>" +
            "<span id=\"photocreditText\"></span>" +
	    "</div>" +
	    "<div id=\"caption\" class=\"caption\" style=\"visibility:hiden;\">" +
        "</div>" +
	"</div>";

    $.template("photoTmpl", phTemplateText); // Compile the template as named template so we can reuse it
}

