function GetURL()
{
	var url= document.referrer;
	if( url == "")
		url= window.location.host+window.location.pathname;
	return url;
}

function startFlash( f){
	var script= document.createElement( "script" );
	script.setAttribute( "src", "./script.php?url="+GetURL()+"&big&id="+f+"&agent="+navigator.userAgent);
	document.body.appendChild( script );
}

function startFull( f){
	var script= document.createElement( "script" );
	script.setAttribute( "src", "./script.php?url="+GetURL()+"&full&id="+f+"&agent="+navigator.userAgent);
	document.body.appendChild( script );
}

function startVideo( f){
	var script= document.createElement( "script" );
	script.setAttribute( "src", "./script.php?url="+GetURL()+"&video&id="+f+"&agent="+navigator.userAgent);
	document.body.appendChild( script );
}