
window.onload=function(){
	
var notimooManager = new Notimoo({
   locationVType: 'bottom',
   locationHType: 'right'
});

// Showing a notification with custom width and for a shorter period of time
notimooManager.show({
   title: '<img src="http://www.uk-plc.net/startup/images/ukplc.gif"/> Notification',
   message: 'Shortly, you will be now redirected to our new <br><a href="http://www.companyregistration.uk-plc.net/"> Company Formation website<br/>Click here to visit now</a>',
   width: 400,
   visibleTime: 10000

});

window.setTimeout('window.location="http://www.companyregistration.uk-plc.net/"; ',10000);

}
