﻿function open_window(width, height, url) {
	window.open(url, "newWin", "status=0,toolbar=0,location=0,scrollbars=0,resizable=0,width=" + width + ", height=" + height);
}

$ektron(document).ready(function() {
	$ektron('.search_input').keydown(function(e) {
		if (e.keyCode == 188 || e.keyCode == 190) {
			return false;
		}
		if (e.keyCode == 13) {
			//__doPostBack('ctl00$BTNSearch','');
			$ektron('.input_search_btn').click();
			return false;
		}
	});
});