/**
 * @author nlaughlin
 */

$("#img_data_entry").click
(
	function()
	{
		openWindow('jpg/ss-Data-Entry.jpg','','width=660,height=500');
	}
);

$("#img_query_builder").click
(
	function()
	{
		openWindow('jpg/ss-Query-Builder.jpg','','width=660,height=500');
	}
);

$("#img_data_tables").click
(
	function()
	{
		openWindow('jpg/ss-Data-Tables.jpg','','width=660,height=500');
	}
);

$("#img_summary_tables").click
(
	function()
	{
		openWindow('jpg/ss-Summary-Tables.jpg','','width=660,height=500');
	}
);

$("#img_charts").click
(
	function()
	{
		openWindow('jpg/ss-Charts.jpg','','width=660,height=500');
	}
);				

function openWindow(theURL,winName,features) 
{
  window.open(theURL,winName,features);
}