var newwindow;
function poptastic(url)
{
	newwindow = window.open(url, 'name', 'height=450,width=800,left=300,top=200,resizable=yes,scrollbars=yes,toolbar=yes,status=yes,menubar=yes');
	if (window.focus) {
		newwindow.focus();
	}
}

function randInt(size)
{
	var rNum = Math.ceil(Math.random() * size);
	return rNum;
}

