// JavaScript Document

function viewCart(){
newWindow = window.open("/gallery/shoppingCart.asp", "subWind", "height=600, width=530, top=100, left=100")
newWindow.focus()
}
	

var typ
function emlOpen(ID, typ){
	if (typ == 1) {
	typEmail = "Branch"
	} else {
	typEmail = "Person"
	}
	urleml = "/resource/sendEmail.asp?cusID=" + ID + "&typEmail=" + typEmail
	newEml = window.open(urleml, "subWind", "height = 500, width = 630, top=100px, left=100px" )
	newEml.focus()
}

function productPreview(productID) {
	urleml = "/gallery/productPreview.asp?productID=" + productID
	newTalk = window.open(urleml, "subWind", "height = 500, width = 600, scrollbars, titlebar, status")
	newTalk.focus()
}
