
function gO(n) { return document.getElementById(n); }
function highlight(id) { 
	setThumbs('plain');
	gO('thumb_'+id).className = "selected"; 
}
function unhighlight(id) { 
	if(id!=selected) { gO('thumb_'+id).className = "plain"; } 
	gO('thumb_'+selected).className = "selected";
}
function choose(id) {
	setThumbs('plain');
	$('thumb_'+id).className = "selected";
	Effect.Fade('full_'+selected,{duration: 0.5});
	Effect.Appear('full_'+id, {queue: 'end',duration: 0.5,from: 0.0001, to: 0.9999});
	/*gO('full_'+selected).style.display = "none";
	gO('full_'+id).style.display = "block";*/
	selected = id;
}

function setThumbs(c)
{
	for(var i=0;i<thumbList.length;i++) {
		gO('thumb_'+thumbList[i]).className = c;
	}
}

function register() {
	w=600; h=580; var winl=(screen.width - w)/2; var wint=(screen.height-h)/2;
	winprops='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,resizeable=0';
	var w = window.open("register.php", "loading", winprops);
	w.focus();
}

var terms = function()
{
	w=413; h=600; var winl=(screen.width - w)/2; var wint=(screen.height-h)/2;
	winprops='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,resizeable=0';
	var w = window.open("/index.php/home/right_for_you_to_cancel_your_contract", "loading", winprops);
	w.focus();
}
