
function open_doc_cor(url)
{
	target_blank(url);
}

function open_link_cor(url)
{
	location.href = url;
}

function target_blank(url)
{
	window.open(url);
}
