// JavaScript Document
function lookInside(productId){
//http://highestvision.org/shop/flashTest/bookViewer.php?productId=10
	// url for production:
	url = 'http://highestvision.org/shop/flashTest/bookViewer.php?productId=' + productId;
	// url for development:
	//url = 'http://localhost/amysbabies/shop/flashTest/bookViewer.php?productId=' + productId;
	
	window.open(url,'bookViewer','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=700,height=740');

}