function display(id, size, width, height, type) {
	var htmlString;
	try {
   		size == 'blah';
	} catch (ex) {
  		var size = '';
	}
	try {
  		width == 'blah';
	} catch (exw) {
  		var width = '';
	}
	try {
  		height == 'blah';
	} catch (exh) {
  		var height = '';
	}
	try {
		type == 'blah';
	} catch (ext) {
		var type = '';
	}
	if (size && size == 'mini') {
		if (!width) {
	   		width = '345px';
		} 
		if (!height) {
	   		height = '410px';
		}
		htmlString = '<iframe src="http://www.byhand.me/spotlight.php?size=mini&type='+type+'&id='+spotid+'&width='+width+'&height='+height+'" frameborder="0" scrolling="no" width="'+width+'" height="'+height+'" allowtransparency="true"> <p>Sorry, your browser can\'t view byhand Spotlights. If you would like to create your own, please visit <a href="http://www.byhand.me">http://www.byhand.me</a></p> </iframe>';
	} else {
		if (!width) {
	   		width = '580px';
		} 
		if (!height) {
	   		height = '520px';
		}
		htmlString = '<iframe src="http://www.byhand.me/spotlight.php?id='+spotid+'&type='+type+'&width='+width+'&height='+height+'" frameborder="0" scrolling="no" width="'+width+'" height="'+height+'" allowtransparency="true"> <p>Sorry, your browser can\'t view byhand Spotlights. If you would like to create your own, please visit <a href="http://www.byhand.me">http://www.byhand.me</a></p> </iframe>';
	}
	
	document.write(htmlString);
}
try {
	spotid == 0;
} catch (ex) {
	var spotid = 0;
}
try {
	size == '';
} catch(ex) {
	var size = '';
}
try {
	width == '';
} catch (ex) {
	var width = '';
}
try {
	height == '';
} catch (ex) {
	var height = '';
}
try {
	type == '';
} catch (ex) {
	var type = '';
}
if (spotid != 0) {
	type = '';
}
display(spotid, size, width, height, type);
