// ibutton.js
// Powered by oursky.net, all rights reserved.

function iBtnCss(style) {
	if (style==1) {c0="111111"; c1="a48173";}
	else if (style==2) {c0="364969";c1="6593e7";}
	else if (style==3) {c0="2f5397";c1="68a6f0";} 
	else if (style==4) {c0="35573d";c1="42aa24";}
	else if (style==5) {c0="843709";c1="db6800";} 
	else if (style==6) {c0="8500a2";c1="c15bff";}
	else {
		style=1;
		c0="111111";
		c1="a48173";
	}
	ibtn="ibtn"+style;
	btn= 'http://img.oursky.net/!/ibtn/'+style;
	document.write('<style type="text/css">');
	document.write('.'+ibtn+' { width: 100%;font-size: 12px;line-height:29px;height:29px;display:block;background: url('+btn+'_0.jpg); }');
	document.write('.'+ibtn+':link, .'+ibtn+':visited, .'+ibtn+':active { color:#'+c0+';text-decoration: none;line-height:29px;background: url('+btn+'_0.jpg); }');
	document.write('.'+ibtn+':hover { color:#'+c1+';text-decoration: none;line-height:27px;background: url('+btn+'_1.jpg); }');
	document.write('</style>');
}
function iButton(title,width,style,url,target) {
	width = width||"60";
	style = style||1;
	if(style>6) { style=1; }
	ibtn="ibtn"+style;
	btn= 'http://img.oursky.net/!/ibtn/'+style;
	target=target||'_self';
	document.write('\
	<table border="0" cellspacing="0" cellpadding="0" background='+btn+'_0.jpg><tr><td width="8"><img src='+btn+'_l.jpg width="8" height="29"></td>\
	<td align="center" width="'+width+'"><a class='+ibtn+' style="display:block" href="'+url+'" target="'+target+'">'+title+'</a></td>\
	<td width="8" align="right"><img src='+btn+'_r.jpg width="8" height="29"></td></tr></table>\
	');
}

scriptscomplete['ibutton'] = true;
