// JavaScript Document

function cwin(url, w, h,idx) {
		
	if (screen.width < 1025){
		LeftPosition=0;
		TopPosition=0;
	} else {
		LeftPosition=(screen.width)?(screen.width-w)/2:100;
		TopPosition=(screen.height)?(screen.height-h)/2:100;
	}
	window.open(url, idx, "width="+w+",height="+h+",top="+TopPosition+",left="+LeftPosition+", scrollbars=yes");
}

function ecatalog_cwin(url) {
	var w = 1024;
	var h = 768;
	
	var idx = "ecatalo";
	
	if (screen.width < 1025){
		LeftPosition=0;
		TopPosition=0;
	} else {
		LeftPosition=(screen.width)?(screen.width-w)/2:100;
		TopPosition=(screen.height)?(screen.height-h)/2:100;
	}
	window.open(url, idx, "width="+w+",height="+h+",top="+TopPosition+",left="+LeftPosition+", scrollbars=no");
}

function ecatalog_cwin2(url) {
	var w = 1024;
	var h = 768;
	
	var idx = "ecatalo";
	
	if (screen.width < 1025){
		LeftPosition=0;
		TopPosition=0;
	} else {
		LeftPosition=(screen.width)?(screen.width-w)/2:100;
		TopPosition=(screen.height)?(screen.height-h)/2:100;
	}
	window.open(url, idx, "width="+w+",height="+h+",top="+TopPosition+",left="+LeftPosition+", scrollbars=yes");
}