
function openVideo(name, style, zip, desc){

	w = screen.availWidth;
	h = screen.availHeight;

	height = 400;
	if (top.info) height+=50;

	t = (h - height) / 2;
	l = (w - 380) / 2;

	this.url = name;
	this.style = style;
	this.desc = desc;
	this.zip = zip;

	preview = window.open("video.htm", "Video", "scrollbar=no, toolbar=no, titlebar=no, width=380, height=" + height + ", top=" + t + " left=" + l);
};
