// JavaScript Document
function showSample(o)
	{
	myURL = '';
	//h = screen.availHeight;
	//w = screen.availWidth;
	h = 650;
	w = 600;
	
	//Check width and height to screen dimensions
	//don't want the box to go past the edge of the screen
	if (h > screen.availHeight)
		{h = screen.availHeight;}
	if (w > screen.availWidth)
		{w = screen.availWidth;}
	
	t = screen.availHeight / 2 - h / 2;
	l = screen.availWidth / 2 - w / 2;
	
	if (o == 1 || o == 2 || o == 3)
		{
		myURL = '/Advertise/AdInfo/'+o+'.cfm?ID='+o;
		}
	
	if (myURL != '')
		{
		myWin = window.open('','myWin','top='+t+',left='+l+',scrollbars=yes,resizable=yes,width='+w+',height='+h);
		myWin.resizeTo(w,h);
		myWin.moveTo(l,t);
		myWin.focus();
		myWin.location = myURL;
		}
	}