// JavaScript Document
function viewImage(image)
{
	var win = window.open(
		'/viewimage/image-'+image+'/', 
		'ViewImage',
		"scrollbars=1, resizable=1, titlebar=1,height=600, width=920, left="+(screen.width/2-460)+", top=20")
}

function printView(id)
{
	var win = window.open(
		'/printview/id-'+id+'/', 
		'PrintView',
		"scrollbars=1, resizable=1, titlebar=1,height=600, width=700, left="+(screen.width-750)+", top=20")
}
