// Ellayoga.com main JavaScript Document

$(function() {
	$.smoothAnchors("normal", "swing", true);
});

function popupwindow(url, w, h)
{
	var winw, winh, winattr;

	winattr = ',scrollbars=yes,status=no,toolbar=no,resizable=no,location=no,dependent=yes,menu=no';
	winw = w;
	winh = h;

	if (typeof imagewin=="undefined" || imagewin.closed) {
		imagewin = window.open("", "", 'width=' + winw + ',height=' + winh + winattr);
		imagewin.moveTo((screen.width - winw) / 2, (screen.height - winh) / 2);
	}
	imagewin.resizeTo(winw, winh);
	imagewin.document.open();
	imagewin.document.write('<html><head></head><body><script language=javascript>' +
		'window.location ="' + url + '"</script></body></html>');
	imagewin.document.close();
	imagewin.focus();
}

