function openGallery(qs)
	{
	//set size of new window
	w = 1100;
	h = 875;
	
	//make sure the size isn't too big for set resolution
	if (h > screen.availHeight)
		{h = screen.availHeight;}
	if (w > screen.availWidth)
		{w = screen.availWidth;}
	
	//set coords to place window in center screen
	t = screen.availHeight / 2 - h / 2;
	l = screen.availWidth / 2 - w / 2;
	

	galleryWin = window.open('','galleryWin','top='+t+',left='+l+',menubar=yes,status=no,location=no,toolbar=no,scrollbars=yes,resizable=yes,width='+w+',height='+h);
	//galleryWin.moveTo(l,t);
	galleryWin.focus();
	//galleryWin.resizeTo(w, h);

	//galleryWin.location = 'http://www.autabuy.com/LinkOut/?GoTo=/Gallery/?ID=' + id;
	//galleryWin.location = 'http://www.autabuy.com/Gallery/?ID=' + id;
	galleryWin.location = 'http://www.autabuy.com/Gallery/?' + qs;
	}
