function datingtips() //popup window
{
	var width = 800;
	var height = 600;

	var win = 'datingtips';
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;

	var url = 'http://www.sonypictures.com/movies/thebrotherssolomon/site/popup/datingtips/index.html';
	var features = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height+',left='+left+',top='+top;
	
	if (screen.height < 610)
	{
		features = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width='+width+',height='+height+',left=0,top=0';
	}

	newwindow = window.open(url, win, features);
	if (window.focus) newwindow.focus();
}