//Copyright 2009 Creativa Web Videos as Flashvideos.com.au

function loadVideo()
	{
	
			if (!isCookie(CookieName))
			{ 
				document.getElementById('CreativaWebContainer').style.position = Vposition;
				document.getElementById('CreativaWebContainer').style.top = Vtop;
				document.getElementById('CreativaWebContainer').style.left = Vleft;
				document.getElementById('CreativaWebContainer').style.right = Vright;
				document.getElementById('CreativaWebContainer').style.bottom = Vbottom;
				ShowVideo();
				createCookie(CookieName,"timeCookie",PlayEveryXHours);
			}
	}
function closeASwf()
	{
		swfobject.removeSWF("CreativaWebPresenter");
	}
function ShowVideo()
			{
				closeASwf();
				writeJS();

				swfobject.embedSWF(swfsrc, "myAlternativeContent", FWidth, FHeight, "9.0.0", false, flashvars, params, attributes);
				if (firsttime !="1")
				{
					document.getElementById('CreativaWebPresenter').style.position = Vposition;
					document.getElementById('CreativaWebPresenter').style.top = Vtop;
					document.getElementById('CreativaWebPresenter').style.left = Vleft;
					document.getElementById('CreativaWebPresenter').style.right = Vright;
					document.getElementById('CreativaWebPresenter').style.bottom = Vbottom;
				}
				
			}
function ShowPlayAgain()
			{
				closeASwf();
				if (PlayItAgain == "true")
				{
					writeJS();

					swfobject.embedSWF("http://www.flashvideos.com.au/swf/playAgain.swf", "myAlternativeContent", "90", "40", "9.0.0", false, flashvars, params, attributes);	
					if (firsttime=="1")
					{
						document.getElementById('CreativaWebContainer').style.position = "";
						document.getElementById('CreativaWebContainer').style.top = "";
						document.getElementById('CreativaWebContainer').style.left = "";
						document.getElementById('CreativaWebContainer').style.right = "";
						document.getElementById('CreativaWebContainer').style.bottom = "";
						firsttime = "0";
					}			
						document.getElementById('CreativaWebPresenter').style.position = Pposition;
						document.getElementById('CreativaWebPresenter').style.top = Ptop;
						document.getElementById('CreativaWebPresenter').style.left = Pleft;
						document.getElementById('CreativaWebPresenter').style.right = Pright;
						document.getElementById('CreativaWebPresenter').style.bottom = Pbottom;

				}		
			}
function writeJS()
			{
				eDIV = document.createElement("div");
				eDIV.setAttribute("id","CreativaWebVideo");
				fDIV = document.createElement("div");
				fDIV.setAttribute("id","myAlternativeContent");
				eAnchor = document.createElement("a");
				eAnchor.setAttribute("href","http://www.adobe.com/go/getflashplayer");
				eAnchor.appendChild(document.createTextNode("adobe"));
				dAnchor = document.createElement("img");
				dAnchor.setAttribute("src","http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif");
				dAnchor.setAttribute("alt","Get Adobe Flash player");
				eAnchor.appendChild(dAnchor);
				fDIV.appendChild(eAnchor);
				eDIV.appendChild(fDIV);
				document.getElementById("CreativaWebContainer").appendChild(eDIV);

			}
function createCookie(name,value,hours) 
{
if (!isCookie(name))
{
	if (hours > 0) 
		{
			var date = new Date();
			date.setTime(date.getTime()+(hours*60*60*1000));
			var expires = "; expires="+date.toGMTString();
			document.cookie = name+"="+value+expires+"; path=/";
		}
		else 
		{
		if (hours == 0)
			{
				var expires = "";
				document.cookie = name+"="+value+expires+"; path=/";
			}
		}
		return;
	}
	return;
}

function isCookie(name) 
{
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
	var c = ca[i];
	while (c.charAt(0)==' ') c = c.substring(1,c.length);
	if (c.indexOf(nameEQ) == 0) return true;
	}
	return false;
}

