// JavaScript Document

function openWindow(URL, windowName, windowFeatures){ 
	newWindow = window.open(URL, windowName, windowFeatures) 
}
	
var defaultWidth = 431;
var defaultHeight = 348;

// loads the video player and then changes the text.
// width and height are optional
function OnVideoClick(videoId, width, height)
{
    LoadVideo(videoId, width, height);
}

// loads the video player
// width and height are optional
function LoadVideo(videoId, width, height)
{
    // if the width and height have been specified, we set it.
    // otherwise we use the default width and height that are defined above
    width = (width) ? width : defaultWidth;
    height = (height) ? height : defaultHeight;
    
    // change the video source   
    var videoPlayerContainer = document.getElementById('videoPlayer');
    videoPlayerContainer.innerHTML = '<embed src="http://lads.myspace.com/videos/vplayer.swf" flashvars="sr=0&a=1&ap=1&mainColor=0xf5dd01&m=' + videoId + '&type=video" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>';
    

}