// --------------------------------------------------------------------
//
// master.js (for the yfc quizzing web page)
//

function playWelcomeVideo() { 		// This is the output on the sidebar of the main page

	var w = window.open( "", "", "width=600,height=560" );
	
	w.document.write( 
'<?xml version="1.0" encoding="utf-8" ?>' +
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' +
'<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">' +
'<head>' +
'<title> Rochester YFC Bible Quizzing </title>' +
'<style type="text/css">' +
'	h2 { text-align: center; }' +
'	body { background-color: #F2F1F6;; margin: 15px; font-family: serif; font-size: 16px; color: #907AB8; }' +
'</style>' +
'</head>' +
'<body>' +
'<h2> Rochester YFC Bible Quizzing </h2>' +
'<div style="text-align: center;">' +
'	<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/6xjkIYLsbYg&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/6xjkIYLsbYg&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>' +
'<br />' +
'	<span ' +
'		onmouseover="this.style.textDecoration=\'underline\'; this.style.color=\'#009\'; this.style.cursor=\'pointer\';"' +
'		onmouseout="this.style.textDecoration=\'none\'; this.style.color=\'#907AB8\'; this.style.cursor=\'default\';"' +
'		onclick="window.close();">' +
'		Close Window' +
'	</span>' +
'<br />' +
'	<a target="_blank" href="http://www.youtube.com/watch?v=6xjkIYLsbYg">Watch this video on YouTube</a>' +
'</div>' +
'</body>' +
'</html>' );
	
	w.document.close();
	
	w.focus();

}


