
var Addresses = {};
Addresses['promo15'] = 'http://works.novosoft.ru/Promo15/window200x300.html';
Addresses['novosoft'] = 'http://novosoft-us.com';
Addresses['ns'] = 'http://novosoft-us.com';
Addresses['microsoft'] = 'http://microsoft.com';
Addresses['ms'] = 'http://microsoft.com';

var Width = 200;
var Height = 300;

var Param = getParameter();
	if( Param != null && Addresses[Param] != null )
	{
	window.open( Addresses[Param], 'promo', 'width=' + Width + ',height=' + Height );
	}

function getParameter()
	{
	var Ret = location.search;
		if( Ret == '' ) return null;
		if( Ret.charAt(0) == '?' ) Ret = Ret.substring( 1 );
	return Ret;
	}
