// JavaScript Document

function follow_us(follow_no) {
	var follow = new Array();
	follow[0] = "none";
	follow[1] = "http://www.thinnoxproductions.com/newsletter/2011/dec/";
	/*
	window.open(follow[follow_no],'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=640,height=480,left=400,top=50');
	*/
	dapic = follow[follow_no];
	xmax = screen.width;
	ymax = screen.height;
	x = (xmax-1000)/2;
	y = (ymax-600)/2;
	features = "toolbar=0,location=0,directories=0,scrollbars=1,resizable=1,status=0,menubar=0,width=1000,height=600,left="+x+",top="+y+",screenX="+x+",screenY="+y;
	winHandle=window.open(dapic,'gallery',features);		
}

