<!--
var newWindow;

function jsPopWindow(url,width,height) {
		var features='width=' + width + ',height=' + height + ',toolbar=0,resizable=0';
        newwindow=window.open(url,'mediapop',features);
        if (window.focus) {newwindow.focus()}
}

function jsResizeWindow(width,height) {
	if (parseInt(navigator.appVersion)>3) {
		top.resizeTo(width,height);
	}
}

function jsCloseWindow() {
	self.close();
}

-->
