// javascript


function chkey(e)
{
var k = window.event||e;
if(k.ctrlKey)
	{
	window.open("http://www.robspcpc.com/NewsServer4/","pcpcns");	}
else
	{
	top.location.href = "http://www.robspcpc.com";
	}
return false;
}

function 		 init()
{
document.getElementById('PcPcBut').onclick	= chkey;
}


