function MySpaceTvViewer(height, width) {
	this.height = height;
	this.width = width;
	this.getObjectTagContent = getObjectTagContent;
}

function getObjectTagContent(queryString) {
	return getMySpaceTvObjectTagContent(this.height, this.width, queryString);
}

function getMySpaceTvObjectTagContent(height, width, movieQueryStr) {
	return "<object enableJSURL=\"false\" enableHREF=\"false\" saveEmbedTags=\"true\""
	+ " allowScriptAccess=\"never\" allownetworking=\"internal\" type=\"application/x-shockwave-flash\""
	+ " allowScriptAccess=\"never\" allownetworking=\"internal\" height=\""
	+ height + "\" width=\"" + width + "\" data=\"http://lads.myspace.com/videos/vplayer.swf\">"
	+ " <param name=\"allowScriptAccess\" value=\"never\" />"
	+ " <param name=\"allowNetworking\" value=\"all\" />"
	+ " <param name=\"movie\" value=\"http://lads.myspace.com/videos/vplayer.swf\" />"
	+ " <param name=\"flashvars\" value=\"" + movieQueryStr + "\" />"
	+ " </object>";
}