// JavaScript Library

//Embed YouTube
function YouTube(id, width, height, autoplay){
	if(!width){
		width = '640';
	}
	if(!height){
		height = '480';
	}
	if(!autoplay){
		autoplay = '0';
	}
	document.write('<iframe src="http://www.youtube.com/v/'+id+'?hd=1&rel=0&autoplay='+autoplay+'" style="width: '+width+'px; height: '+height+'px; "');
}
function youtube(id, width, height, autoplay){
	if(!width){
		width = '640';
	}
	if(!height){
		height = '480';
	}
	if(!autoplay){
		autoplay = '0';
	}
	document.write('<iframe src="http://www.youtube.com/v/'+id+'?hd=1&rel=0&autoplay='+autoplay+'" style="width: '+width+'px; height: '+height+'px; "');
}


//URL Redirect
function redirect(url){
	window.location = url;
}
