// 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 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");
}

function openWindow( url, w, h, scrollbars, resizable ) {
	w += 30;
	h += 30;
	//scrollbars = scrollbars ? scrollbars : 'auto';
        scrollbars = 'yes';
	resizable = resizable ? resizable : '1';
	var win = window.open(
		url,
		"windows"+ (Math.round(Math.random() * 1000)),
		"scrollbars="+scrollbars+", resizable="+resizable+", titlebar=1, height="+h+", width="+w+", left="+(screen.width/2-w/2)+", top=20");	
}