<!--
function c_img(a,b,c)
{
	if(a == 0)	{	document.images[b].src = "images/" + c ;}
	if(a == 1)	{	document.images[b].src = "../images/" + c ;}
	if(a == 2)	{	document.images[b].src = "../../images/" + c ;}
	if(a == 3)	{	document.images[b].src = "../../../images/" + c ;}
}

function GetRandom()
{
	var rndValue = 0;

	do
	{
		rndValue = Math.random();
	}
	while(rndValue == 1)
	return(parseInt(rndValue * 10));
}

function nw(a,b,c,d)
{
	var nw;
	var option;
	var w;
	var h;
	w = ",width=" + b;
	h = ",height=" + c;
	s = ",scrollbars=" + d;
	option = "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes"+ s + w + h;

	nw = window.open(a,'sub_win',option);
	nw.focus();
}



//-->
