function OpenWindow(jUrl, jNameWin, jHeight, jWidth, jStringView, jType)
{
	if(!jType)
	{
		jLeftPosition = (screen.width) ? (screen.width-jWidth)/2 : 0;
		jTopPosition = (screen.height) ? (screen.height-jHeight)/2 : 0;
	}
	else{
		jLeftPosition = 0;
		jTopPosition = 0;
		jWidth = screen.width;
		jHeight = screen.height;
	}	
	
	aStringView = jStringView.split(";");
	
	return window.open(jUrl, jNameWin, 'scrollbars='+aStringView[0]+', status='+aStringView[1]+',resizable='+aStringView[2]+',titlebar='+aStringView[3]+',menubar='+aStringView[4]+',width=' + jWidth + ',height=' + jHeight + ',top=' + jTopPosition + ',left=' + jLeftPosition);
}
