// JavaScript Document
function loadfreepopup() 
{
	var http = createObject();
	
	var nocache = Math.random();
	http.open('get', 'http://www.doculink.tv/ajax/free_reg.php?nocache='+nocache);
	http.onreadystatechange = function()
	{
		if(http.readyState == 4)
		{	
			document.getElementById('freepopup').innerHTML = http.responseText;
		}
	}
	http.send(null);
}
function openFreeBox()
{
	var height_in = new Tween(document.getElementById('freepopup_background').style,'height',Tween.strongEaseOut,0,1078,1,'px');
	var top_in = new Tween(document.getElementById('freepopup_background').style,'top',Tween.strongEaseOut,625,0,1,'px');
	
	top_in.start();
	height_in.start();
	
	height_in.onMotionFinished = function()
	{
		document.getElementById('freepopup_wrapper').style.height = '225px';
		document.getElementById('freepopup_wrapper').innerHTML = '<div style="float:left; height:200px;" id="freepopup"></div>';
		loadfreepopup();
	}
}
function closeFreeBox()
{
	document.getElementById('freepopup_wrapper').style.height = '0px';
	document.getElementById('freepopup_wrapper').innerHTML = '';
	
	var height_out = new Tween(document.getElementById('freepopup_background').style,'height',Tween.strongEaseOut,1078,0,1,'px');
	var top_out = new Tween(document.getElementById('freepopup_background').style,'top',Tween.strongEaseOut,0,625,1,'px');
	
	top_out.start();
	height_out.start();
}
