// JavaScript Document

function openDominKnowTV(src, width, height, blank){
	
	if (typeof blank == "undefined") {
		blank = false;
	}
	
	sSize = ScreenSize();
	
	if(blank == false){
		h = height + 60;
	} else {
		h = height;	
	}
	w = width;
	t = parseInt(( sSize['height'] / 2 ) - ( h / 2 ));
	l = parseInt(( sSize['width'] / 2 ) - ( w / 2 ));
	
	dominKnowTV = window.open(src,'dominKnowTV','width=' + w + ',height=' + h + ',top=' + t + ',left=' + l + ',toolbar=0,resizable=0,directories=0,status=0,menubar=0,scrollbars=0,');
	
}