function scientificfeed(url,size,color,cat) {
	
	cat = cat || 0;
	
	if ( size == '1' ) {
		document.write('<div style="width: 250px; height: 300px; overflow: hidden; padding: 0 0 0 0; border: 0;">');
		document.write('<iframe src="http://www.scientificfeed.com/widget/?size=1&color=' + color + '&cat=' + cat + '&url=' + url + '" width="400" height="550" frameborder="0"></iframe>');
		document.write('</div>');
	
	} else if ( size == '2' ) {
		document.write('<div style="width: 250px; height: 150px; overflow: hidden; padding: 0 0 0 0; border: 0;">');
		document.write('<iframe src="http://www.scientificfeed.com/widget/?size=2&color=' + color + '&cat=' + cat + '&url=' + url + '" width="400" height="550" frameborder="0"></iframe>');
		document.write('</div>');
	
	} else if ( size == '3' ) {
		document.write('<div style="width: 120px; height: 435px; overflow: hidden; padding: 0 0 0 0; border: 0;">');
		document.write('<iframe src="http://www.scientificfeed.com/widget/?size=3&color=' + color + '&cat=' + cat + '&url=' + url + '" width="400" height="550" frameborder="0"></iframe>');
		document.write('</div>');
	
	} else if ( size == '4' ) {
		document.write('<div style="width: 120px; height: 183px; overflow: hidden; padding: 0 0 0 0; border: 0;">');
		document.write('<iframe src="http://www.scientificfeed.com/widget/?size=4&color=' + color + '&cat=' + cat + '&url=' + url + '" width="400" height="550" frameborder="0"></iframe>');
		document.write('</div>');
	
	}

}