// LIFE EMBED JS

function LIFEembedDrawGallery(galleryId){
	document.write('<div><iframe scrolling="no" marginheight="0" marginwidth="0" frameborder="0" src="http://www.life.com/embed/index/gallery?id=' + galleryId + '" width="280" height="360"></iframe></div>');
}

function LIFEembedDrawImage(imageId){
	document.write('<div><iframe scrolling="no" marginheight="0" marginwidth="0" frameborder="0" src="http://www.life.com/embed/index/image?id=' + imageId + '" width="280" height="360"></iframe></div>');
}

function LIFEembedDrawImage2(imageId, height){
	height = height * 1.0;
	if (height < 1){
		height = 260;
	}
	var theHeight = 65 + height;
	document.write('<div><iframe scrolling="no" marginheight="0" marginwidth="0" frameborder="0" src="http://www.life.com/embed/index/image?id=' + imageId + '" width="280" height="' + theHeight + '"></iframe></div>');
}