function popupWindow(url)
{
	window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}

function ShowColor(color_id, gid, title)
{
	document.getElementById('g' + gid).href='../../UserFiles/images/colors/color_' + color_id + '.jpeg';
	document.getElementById('g' + gid).title=title;
}

function pec(id)
{
	if(document.getElementById('ipec_' + id).value==0)
	{
		document.getElementById('ipec_' + id).value=1;
		document.getElementById('spec_' + id).className='peccur';
	}
	else
	{
		document.getElementById('ipec_' + id).value=0;
		document.getElementById('spec_' + id).className='pec';
	}
}


function getAppVersion()
{
    appname= navigator.appName;
    appversion = navigator.appVersion;
    majorver = appversion.substring(0, 1);
    if( (appname == "Netscape") && ( majorver >= 3 ) ) return 1;
    if( (appname == "Microsoft Internet Explorer") && (majorver >= 4) ) return 1;
	if( appname == "Opera" ) return 1;
	return 0;
}


