/* Copyright © 2009 Intuitive Life - All rights reserved */
/*-- Video File */

var min=4			//number of minutes 4
var sec=55			//number of seconds 55

function StartDelay()
{
TotalMin = (min * 60000)
TotalSec = (sec *1000)
TotalTime = TotalMin + TotalSec

//alert("To Start the " + (TotalTime/1000) + " second Delay Press OK");
window.setTimeout("ShowLink()", TotalTime);
}

function ShowLink(){
document.getElementById('InsetLink').innerHTML = DisShowLink;
}

function StopVideo(){
document.getElementById('InsetLink').innerHTML = DisplayLink;
}

var DisShowLink = " \
<center> \
<DIV id=\"spacer\" style=\"height:10px; overflow:hidden;\"></div> \
<SPAN style=\"FONT-SIZE:10pt; Color:navy; FONT-FAMILY:arial\"> \
Click the Button to Place Your Order! \
</span></b> \
<DIV id=\"spacer\" style=\"height:10px; overflow:hidden;\"></div> \
<a href=\"http://MakeAVideoForYouTube.com/OrderForm/YouTubeVideoOrderForm.htm\"> \
<img border=0 width=\"265\" src=\"http://MakeAVideoForYouTube.com/Images/OrderNowButton.jpg\"> \
</a> \
<DIV id=\"spacer\" style=\"height:10px; overflow:hidden;\"></div> \
<a href=\"http://MakeAVideoForYouTube.com/OrderForm/YouTubeVideoOrderForm.htm\"> \
<img border=0 width=\"265\" src=\"http://MakeAVideoForYouTube.com/Images/CreditCards.jpg\">  \
</a> \
<center> \
<DIV id=\"spacer\" style=\"height:10px; overflow:hidden;\"></div>";

var DisplayNoLink = "";

window.onload=function(){
document.getElementById('InsetLink').innerHTML = DisplayNoLink;
}












