// JavaScript Document
function createCode()
{
  div=getElmt("getcode");
  var img=GetRadioValue("img");
  var type=GetRadioValue("type");
  var urlImg="http://my.jamespot.com/img/"+img;
  var code="";
  if (type=='js')
  {
    code='<script type="text/javascript" src="http://my.jamespot.com/button.js"></script>';
    code=code+'<script type="text/javascript">';
    code=code+'draw_button("'+urlImg+'")';
    code=code+"</script>";
    code=code+"<noscript>You must have Javascript enable come to <a href='http://my.jamespot.com'>Jamespot</a></noscript>";
  }
  else
  {
  	code='<a href="http://my.jamespot.com/?action=spotit" >';
  	code=code+"<img src=\""+urlImg+"\" border=\"0\" alt=\"Add to Jamespot\"/></a>";
  }
  div.innerHTML="<textarea readonly rows=\"6\" cols=\"60\" style=\"font-size:10px;width=500px;\" onclick=\"this.select()\">"+code+"</textarea>";
}

function createCodeTopSite(urlsearch)
{
  div=getElmt("getcode");
  var img=GetRadioValue("img");
  code='<a href="http://my.jamespot.com" alt="TOP Site Jamespot" title="TOP Site Jamespot"><img src="http://my.jamespot.com/dynimage.php?what=toprank&url='+urlsearch+'&img='+img+'" border="0"></a>';
  div.innerHTML="<textarea readonly rows=\"6\" cols=\"60\" style=\"font-size:10px;width=500px;\" onclick=\"this.select()\">"+code+"</textarea>";
}

function getCodeLink(img)
{
	 div=getElmt("CodeArea");
	 code='<a href="http://my.jamespot.com" target="_blank"><img src="http://my.jamespot.com/img/'+img+'" border=0></a>'
	 div.value=code;
}

function widget(idSpot)
{
	if(idSpot == 0)
	{
		return false;
	}else{
		document.form_widget.submit();
	}                                                                                                                                                                                         			
}

function widget_code()
{
	var type=GetRadioValue("code_type");  
	if(type == "J")
	{
		document.getElementById("widget_iframe").style.display = "none";
		document.getElementById("preview_iframe").style.marginLeft = "-10000px";
		
		document.getElementById("widget_javascript").style.display = "block";
		document.getElementById("preview_javascript").style.marginLeft = "0px";	
		
	}else if(type == "I"){
		document.getElementById("widget_javascript").style.display = "none";
		document.getElementById("preview_javascript").style.marginLeft = "-10000px";	
		
		document.getElementById("widget_iframe").style.display = "block";
		document.getElementById("preview_iframe").style.marginLeft = "0px";
	}
}
