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

function viewProduct(id) {
	var win = window.open (
		'/viewproduct/id-'+id+'/', 
		'ViewProduct',
		"scrollbars=1, resizable=1, titlebar=1,height=800, width=840, left="+(screen.width/2-420)+", top=20");
}

function add1Cart(id, count) {
	var win = window.open(
		'/cart/action-add1cart/id-'+id+'/count-'+count+'/',
		'Add1Cart',
		"scrollbars=1, resizable=1, titlebar=1, height=520, width=700, left="+(screen.width-750)+", top=20");
}

function makeOrder() {
	var win = window.open(
		'/makeorder/',
		'MakeOrder',
		"scrollbars=1, resizable=1, titlebar=1, height=520, width=700, left="+(screen.width-750)+", top=20");
}
