// JavaScript Document
//function newWindow(url,width,height){
//	width+=100; height+=70;
//	namewin=url.substring(2,url.length-4);
//	description=window.open('images\\products\\'+url, namewin,'toolbar=no,width='+width+',height='+height+',directories=no,status=no,scrollbars=no,resize=no,menubar=no,top=120,left=500');
//}

var Printy = null;
var Party = null;

function ShowWin(href){

if (Printy != null){
Printy.close();
}

Printy = window.open(href,'Оснастки','width=1024,height=800,directories=no,toolbar=no,resizable=yes,menubar=no,scrollbars=yes');
Printy.name='Printy';
Printy.focus();
return false;
}

function ShowParty(href){

if (Party != null){
Party.close();
}

Party = window.open(href,'Вечеринка','width=1450,height=1024,directories=no,toolbar=no,resizable=yes,menubar=no,scrollbars=yes');
Party.name='Party';
Party.focus();
return false;
}


