
function CreateNewWin(link,W,H){
	w=window.open(link,'advert',(CreateNewWin.arguments.length>3?'scrollbars=yes,':'')+'resizable=yes,width='+W+',height='+H);
}

function showhide(DIV){
	if(	document.getElementById(DIV).style.display == 'none'){
		document.getElementById(DIV).style.display = '';
		
	}
	else{
		document.getElementById(DIV).style.display = 'none';
	}
}

setTimeout ("framekiller()", 1500);
function framekiller() {
	if (self.parent.frames.length != 0)
	if (self.parent.location != document.location) {
		//self.parent.location=document.location;
		self.parent.location='http://www.apteka.ua/';
	}
}
jQuery(function($) {
	var h1=$(".rubriks_desc h1");
	var addInfo=$(".rubriks_desc p:gt(0)");
	if (addInfo.length==0)
		return;
	var p1=$(".rubriks_desc p:eq(0)");
	h1.wrapInner("<a class='rubric_hide' href='#'/>");
	p1.append("<a class='rubric_hide' href='#'> [...]</a>");
	$(".rubriks_desc p:gt(0)").hide();
	$(".rubriks_desc h2").hide();
	$(".rubriks_desc a.rubric_hide").click( function () {
		jQuery(".rubriks_desc  p:gt(0)").toggle('fast');
		jQuery(".rubriks_desc  h2").toggle('fast');
		return false;
	});
});