function writeObject(url,width,height,type){
	switch (type){
		case 'flash':
		default:
			document.write('<object type="application/x-shockwave-flash" data="'+url+'" width="'+width+'" height="'+height+'">');
			document.write('	<param name="movie" value="'+url+'" />');
			document.write('</object>');
			break;
	}

	return true;
}
