/****************************** 	SIGNIFERO SOLUTIONS		*********************************

|				 																			|
|									   instel.js											|
|																							|
|																							|
|																							|
|	------------------------------------------------------------------------------------	|
|																							|
|		Algemeen:											Contactpersoon:					|
|																							|
| 		www.signifero.nl									Dennis Bloemendaal				|
|		T. 070 - 363 20 41									T. 06 - 41 50 77 58 			|
|		E. info@signifero.nl								E. Dennis@signifero.nl			|
|																							|

***************************     MAATWERK IN WEBTOEPASSINGEN    ******************************/




if (screen.width<=800)   scherm=0;
if (screen.width<=1152)  scherm=1;
if (screen.width>1152)   scherm=2;

intwidth=window.screen.availWidth;
intheight=window.screen.availHeight;
intwidth=parseInt(intwidth);
intheight=parseInt(intheight);


function stelin(){

if (scherm <=1){
if(intwidth>0&&intheight>0) {
window.resizeTo(intwidth,intheight)
window.moveTo(0,0);
}
}
if (scherm==2){
x=Math.abs((intwidth-1152)/2);
y=5;

window.resizeTo(1152,850);
window.moveTo(x,y);

}}


stelin();