<!--

function framecheck()
{
	var parentframe = 'sc_frameindex.htm';
  	var frames;
	var current ;

	frames = parent.frames.length;

	if (frames == 0)
       	{
		current = window.self.location.pathname;
	            	window.location.replace (parentframe + '?' + current);
   	}
	else
	{
	}
}

//-->;

onload = framecheck;
